home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 173 / 173.xpi / components / nsGMNotifierService.js < prev    next >
Text File  |  2009-09-28  |  99KB  |  2,879 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is Gmail Notifier code.
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  * Doron Rosenberg.
  18.  * Portions created by the Initial Developer are Copyright (C) 2004 - 2006
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *
  23.  * Alternatively, the contents of this file may be used under the terms of
  24.  * either of the GNU General Public License Version 2 or later (the "GPL"),
  25.  * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  26.  * in which case the provisions of the GPL or the LGPL are applicable instead
  27.  * of those above. If you wish to allow use of your version of this file only
  28.  * under the terms of either the GPL or the LGPL, and not to allow others to
  29.  * use your version of this file under the terms of the MPL, indicate your
  30.  * decision by deleting the provisions above and replace them with the notice
  31.  * and other provisions required by the GPL or the LGPL. If you do not delete
  32.  * the provisions above, a recipient may use your version of this file under
  33.  * the terms of any one of the MPL, the GPL or the LGPL.
  34.  *
  35.  * ***** END LICENSE BLOCK ***** */
  36.  
  37. const kGMSERVICE_CONTRACTID = "@mozilla.org/GMailNotifier;1"
  38. const kGMSERVICE_CID = Components.ID("1d024ea4-5432-4831-9241-c99a85a9d2b4");
  39. const nsINotifierService = Components.interfaces.nsIGMNotifierService
  40. const nsINotifierProgressListener = Components.interfaces.nsIGMNotifierProgressListener;
  41. const nsISupports = Components.interfaces.nsISupports;
  42.  
  43. const kIOSERVICE_CONTRACTID = "@mozilla.org/network/io-service;1";
  44. const nsIIOService = Components.interfaces.nsIIOService;
  45.  
  46. const nsICookieManager = Components.interfaces.nsICookieManager;
  47. const kCOOKIESERVICE_CONTRACTID = "@mozilla.org/cookieService;1";
  48.  
  49. const kPSWDMANAGER_CONTRACTID = "@mozilla.org/passwordmanager;1";
  50. const nsIPasswordManagerInternal = Components.interfaces.nsIPasswordManagerInternal;
  51.  
  52. const kLOGINMANAGER_CONTRACTID = "@mozilla.org/login-manager;1"
  53. const nsILoginManager = Components.interfaces.nsILoginManager;
  54.  
  55. const kTIMER_CONTRACTID = "@mozilla.org/timer;1";
  56. const nsITimer = Components.interfaces.nsITimer;
  57.  
  58. const nsIHttpChannel = Components.interfaces.nsIHttpChannel;
  59.  
  60. function nsNotifierService() {
  61.   // log string
  62.   this.logString = "";
  63.   this.connectionCounter = 0;
  64.  
  65.   // array of attached listeners
  66.   this.listeners = new Array();
  67.   this.notificationListenerID = null;
  68.  
  69.   this.userQueue = null;
  70.   this.currentUserQueue = null;
  71.  
  72.   this.loggedIn = false;
  73.   this.userList = null;
  74.   this.userCount = 0;
  75.   this.loggedInUsers = 0;
  76.   this.multiuser = false;
  77.   this.defaultUser = null;
  78.  
  79.   this.connectionPhase = null;
  80.   this.isAutoConnecting = false;
  81.  
  82.   this.prefBranch = null;
  83.  
  84.   this.updateTimer = null;
  85.   this.timeOut = 600000; // default to 10 mins
  86.  
  87.   var myThis = this;
  88.   this.PrefChangeObserver = {
  89.     observe: function(aSubject, aTopic, aData)
  90.     {
  91.       myThis.prefChanged(aData);
  92.     }
  93.   };
  94.  
  95.   this.channel = null;
  96.  
  97.   this.addPrefObserver("gm-notifier", this.PrefChangeObserver);
  98.   this.observerService = Components.classes["@mozilla.org/observer-service;1"].getService(Components.interfaces.nsIObserverService);
  99.  
  100.   if (!this.supportsMultiMode()) {
  101.     this.multiuser = false;
  102.   } else {
  103.     this.multiuser = this.getPrefBranch().getBoolPref("gm-notifier.multiaccount.enabled");
  104.   }
  105.  
  106.   // force logged out
  107.   this.getPrefBranch().setBoolPref("gm-notifier.loggedin", false);
  108.  
  109.   // can be not set
  110.   try {
  111.     this.defaultUser = this.getPrefBranch().getCharPref("gm-notifier.users.default");
  112.   } catch (e) {}
  113. }
  114.  
  115. // migrates old-firefox (2.0 and below) stored passwords to the new 3.0 way, 
  116. // which requres a http realm
  117. nsNotifierService.prototype.migrateAccounts = function() {
  118.   var url = "chrome://gm-notifier/";
  119.  
  120.   var passwordManager = Components.classes[kLOGINMANAGER_CONTRACTID].getService(nsILoginManager);
  121.   var logins = passwordManager.getAllLogins({});
  122.   for (var i = 0; i < logins.length; i++) {
  123.     this.logItem(" :: "+logins[i].hostname + " " + logins[i].httpRealm + " " + logins[i].username);
  124.  
  125.     if (logins[i].hostname == url && (logins[i].httpRealm == null)) {
  126.       this.logItem(" ---- migrating login");
  127.  
  128.       var logininfo = Components.classes["@mozilla.org/login-manager/loginInfo;1"].createInstance(Components.interfaces.nsILoginInfo);
  129.       // XXX: FF3 doesn't allow empty/null names - using " ", need to reconsider
  130.       logininfo.init(url, null, "gm-notifier", logins[i].username, logins[i].password ? logins[i].password : " ", "", "");
  131.       passwordManager.modifyLogin(logins[i], logininfo);
  132.     }
  133.   }
  134. }
  135.  
  136. nsNotifierService.prototype.buildUserList = function() {
  137.   this.userList = new Object();
  138.  
  139.   // we need to reset notifier prefs for loggedin to false.  This will also
  140.   // transition 0.5.x users to the new pref way
  141.   var url = "chrome://gm-notifier/";
  142.  
  143.   // check for toolkit's login manager (Mozilla 1.9)
  144.   if (Components.classes[kLOGINMANAGER_CONTRACTID]) {
  145.     var passwordManager = Components.classes[kLOGINMANAGER_CONTRACTID].getService(nsILoginManager);
  146.  
  147.     var passwords = passwordManager.findLogins({}, url, null, "gm-notifier");
  148.     if (passwords.length == 0) {
  149.       // try to migrate
  150.       this.logItem("no passwords found, lets try to migrate accounts");
  151.       this.migrateAccounts();
  152.     }
  153.  
  154.     passwords = passwordManager.findLogins({}, url, null, "gm-notifier");
  155.  
  156.     if (passwords.length > 0) {
  157.       for (var i = 0; i < passwords.length; i++) {
  158.         username = passwords[i].username;
  159.  
  160.         this.userList[username] = this.newUserListItem(username, null);
  161.         this.getPrefBranch().setBoolPref("gm-notifier.userlist." + username + ".loggedin", false);
  162.       }
  163.     }
  164.   } else {
  165.     var passwordManager = Components.classes[kPSWDMANAGER_CONTRACTID].createInstance();
  166.     if (!passwordManager) {
  167.       return;
  168.     }
  169.     passwordManager = passwordManager.QueryInterface(Components.interfaces.nsIPasswordManager);
  170.  
  171.     if (!passwordManager) {
  172.       return;
  173.     }
  174.  
  175.     var enumerator = passwordManager.enumerator;
  176.     while (enumerator.hasMoreElements()) {
  177.       var nextPassword;
  178.       try {
  179.         nextPassword = enumerator.getNext();
  180.       } catch(e) {
  181.         break;
  182.       }
  183.       nextPassword = nextPassword.QueryInterface(Components.interfaces.nsIPassword);
  184.       var host = nextPassword.host;
  185.  
  186.       if (host == url) {
  187.         // try/catch in case decryption fails (invalid signon entry)
  188.         try {
  189.           var username = nextPassword.user;
  190.           this.userList[username] = this.newUserListItem(username, null);
  191.  
  192.           this.getPrefBranch().setBoolPref("gm-notifier.userlist." + username + ".loggedin", false);
  193.         } catch (e) {
  194.         }
  195.       }
  196.     }
  197.   }
  198. }
  199.  
  200. nsNotifierService.prototype.buildUserQueue = function() {
  201.   this.userQueue = new Array();
  202.  
  203.   // add default user first, if one exists.
  204.   if (this.defaultUser) {
  205.     this.userQueue.push(this.defaultUser);
  206.   }
  207.  
  208.   // not multi-user, we are done
  209.   if (!this.multiuser) {
  210.     return;
  211.   }
  212.  
  213.   for (name in this.userList) {
  214.     if (name != this.defaultUser) {
  215.       // only add to the queue if autologin is set to true
  216.       var autologin = false;
  217.  
  218.       try {
  219.         autologin = this.getPrefBranch().getBoolPref("gm-notifier.userlist." + name + ".autologin");
  220.       } catch (e) {}
  221.  
  222.       if (autologin) {
  223.         this.userQueue.push(name);
  224.       }
  225.     }
  226.   }
  227. }
  228.  
  229.  
  230. /********** Scriptable interfaces ****************/
  231.  
  232. /**
  233.  * Initiates login
  234.  *
  235.  * @param aUsername
  236.  * @param aPassword
  237.  * @param aListenerID
  238.  */
  239. nsNotifierService.prototype.initLogin = function(aUsername, aPassword, aListenerID) {
  240.   this.logItem("initLogin: aListenerID is " + aListenerID);
  241.  
  242.   // build user list
  243.   if (!this.userList) {
  244.     this.logItem("initLogin: no user list");
  245.     try {
  246.       this.buildUserList();
  247.     } catch (ex) {
  248.       // master password canceling throws an exception
  249.       this.userList = null;
  250.     }
  251.   }
  252.  
  253.   if (!this.userList[aUsername])
  254.     this.userList[aUsername] = this.newUserListItem(aUsername, aPassword);
  255.   else {
  256.     this.userList[aUsername].password = aPassword;
  257.   }
  258.  
  259.   this.notificationListenerID = aListenerID;
  260.  
  261.   // user queue
  262.   if (!this.multiuser) {
  263.     // single user - one person at a time in the queue
  264.     this.userQueue = new Array();
  265.     this.userQueue.push(aUsername);
  266.   }
  267.  
  268.   this.checkAccounts();
  269. }
  270.  
  271. /**
  272.  * Initiates a new mail check
  273.  *
  274.  */
  275. nsNotifierService.prototype.checkNow = function() {
  276.   this.checkAccounts();
  277. }
  278.  
  279. /**
  280.  * Logs out all users
  281.  *
  282.  */
  283. nsNotifierService.prototype.logout = function() {
  284.   // clear the timer
  285.   if (this.updateTimer) {
  286.     this.updateTimer.cancel();
  287.   }
  288.  
  289.   this.updateTimer = null;
  290.  
  291.   // clear the cookie data
  292.   this.clearCookieData();
  293.  
  294.   // reset all users and log each user out
  295.   for (var username in this.userList) {
  296.     this.userList[username] = this.newUserListItem(username, null);
  297.     this.pushStateChange(username, nsINotifierProgressListener.LOGOUT_USER);
  298.   }
  299.  
  300.   // clear user queue
  301.   this.userQueue = null;
  302.   this.currentUserQueue = null;
  303.   this.loggedIn = false;
  304.   this.loggedInUsers = 0;
  305.  
  306.   this.pushStateChange(null, nsINotifierProgressListener.LOGOUT);
  307.  
  308.   this.getPrefBranch().setBoolPref("gm-notifier.loggedin", false);
  309. }
  310.  
  311. /**
  312.  * Logs the user out
  313.  *
  314.  */
  315. nsNotifierService.prototype.logoutUser = function(aUsername) {
  316.   if (!this.userList[aUsername]) {
  317.     return;
  318.   }
  319.  
  320.   // remove from the user queue
  321.   if (this.userQueue) {
  322.     var index =  this.isUserInQueue(aUsername);;
  323.     if (index !== false) {
  324.       this.userQueue.splice(index, 1);
  325.     }
  326.   }
  327.   if (this.userList[aUsername].state == nsINotifierService.USER_STATE_LOGGED_IN) {
  328.     this.userList[aUsername].state = nsINotifierService.USER_STATE_LOGGED_OUT;
  329.     this.loggedInUsers--;
  330.   }
  331.  
  332.   // logout, so reset the userdata.
  333.   this.userList[aUsername] = this.newUserListItem(aUsername, null);
  334.  
  335.   // if this was the default user and we have other logged in users, switch
  336.   // default user to first in the queue
  337.   if (this.loggedInUsers > 0) {
  338.     if (this.defaultUser == aUsername) {
  339.       this.getPrefBranch().setCharPref("gm-notifier.users.default", this.userQueue[0]);
  340.     }
  341.   }
  342.  
  343.   // tell all listeners that we logged out
  344.   this.pushStateChange(aUsername, nsINotifierProgressListener.LOGOUT_USER);
  345.  
  346.   if (this.loggedInUsers == 0) {
  347.     this.logout();
  348.   }
  349. }
  350.  
  351. /**
  352.  * Logs the user in
  353.  *
  354.  */
  355. nsNotifierService.prototype.loginUser = function(aUsername) {
  356.   // in not in the user list, new user - such as one being added in the accounts
  357.   // dialog
  358.   if (!this.userList[aUsername]) {
  359.     var password = this.getPassword(aUsername);
  360.  
  361.     // no password, no go
  362.     if (!password) {
  363.       return;
  364.     }
  365.  
  366.     this.userList[aUsername] = this.newUserListItem(aUsername, password);
  367.   }
  368.  
  369.   // add to queue
  370.   if (!this.userQueue) {
  371.     this.userQueue = new Array();
  372.   }
  373.  
  374.   // if not in the queue, add
  375.   var userQueueIndex = this.isUserInQueue(aUsername);
  376.   if (userQueueIndex === false) {
  377.     this.userQueue.push(aUsername);
  378.     wasInQueue = false;
  379.     userQueueIndex = this.userQueue.length - 1;
  380.   }
  381.  
  382.   // if already in an accounts check, add to queue
  383.   if (this.currentUserQueue != null) {
  384.     // do nothing really
  385.   } else {
  386.     // clear timer
  387.     if (this.updateTimer) {
  388.       this.updateTimer.cancel();
  389.     }
  390.  
  391.     // cheat :)
  392.     this.currentUserQueue = userQueueIndex;
  393.  
  394.     // force this person to be the default user if no logged in users
  395.     if (this.loggedInUsers == 0) {
  396.       this.getPrefBranch().setCharPref("gm-notifier.users.default", aUsername);
  397.     }
  398.  
  399.     // presto!
  400.     this.accountCheckStart(aUsername);
  401.   }
  402. }
  403.  
  404. nsNotifierService.prototype.isUserInQueue = function(aUsername) {
  405.   if (!this.userQueue) {
  406.     return false;
  407.   }
  408.  
  409.   for (var i = 0; i < this.userQueue.length; i++) {
  410.     if (this.userQueue[i] == aUsername) {
  411.       return i;
  412.     }
  413.   }
  414.  
  415.   return false;
  416.  
  417. }
  418.  
  419. /**
  420.  * Loads the user's cookies into the browser
  421.  *
  422.  */
  423. nsNotifierService.prototype.loadUserCookies = function(aUsername) {
  424.   if (!this.userList[aUsername] ||
  425.       this.userList[aUsername].state != nsINotifierService.USER_STATE_LOGGED_IN) {
  426.     return;
  427.   }
  428.  
  429.   this.loadCookieData(aUsername);
  430. }
  431.  
  432. nsNotifierService.prototype.loadCookieIntoApp = function(aCookieData) {
  433.   if (!aCookieData) {
  434.     return;
  435.   }
  436.  
  437.   var cookieManager2 = Components.classes["@mozilla.org/cookiemanager;1"]
  438.                                  .getService(Components.interfaces.nsICookieManager2);
  439.  
  440.   var index = aCookieData.value.indexOf("=");
  441.   var value = aCookieData.value.substr(index+1);
  442.   //this.logItem("  -- cdata data is: name: "+aCookieData.name+" value:" + value + " for "+aCookieData.domain);
  443.  
  444.   // 1.9+ added a httpOnly flag
  445.   var isGecko19 = false;
  446.  
  447.   if (Components.interfaces.nsIXULAppInfo) {
  448.     var appInfo = Components.classes["@mozilla.org/xre/app-info;1"].getService(Components.interfaces.nsIXULAppInfo);
  449.     var versionChecker = Components.classes["@mozilla.org/xpcom/version-comparator;1"].getService(Components.interfaces.nsIVersionComparator);
  450.  
  451.     if (versionChecker.compare(appInfo.platformVersion, "1.9") >= 0) {
  452.       isGecko19 = true;
  453.     }
  454.   }
  455.  
  456.   //this.logItem(" loading cookie into app: domain:"+ aCookieData.domain+" path: "+(aCookieData.path ? aCookieData.path : "") + " name: " + aCookieData.name+ " value: " + value);
  457.   if (isGecko19) {
  458.     cookieManager2.add(aCookieData.domain, aCookieData.path ? aCookieData.path : "", aCookieData.name, value, false, false, true, Math.pow(2, 62));
  459.   } else {
  460.     cookieManager2.add(aCookieData.domain, aCookieData.path ? aCookieData.path : "", aCookieData.name, value, false, true, Math.pow(2, 62));
  461.   }
  462. }
  463.  
  464. /**
  465.  * Adds an NotifierListener to this service
  466.  *
  467.  * @param aListener
  468.  */
  469. nsNotifierService.prototype.addListener = function(aListener) {
  470.   // should we autologin?
  471.   // make sure to only check for autologin the first time a listener has been
  472.   // added, ie first browser window calls us.
  473.   if ((this.listeners.length == 0) && this.getPrefBranch() &&
  474.       this.getPrefBranch().getBoolPref("gm-notifier.autologin.enabled")) {
  475.     // autologin
  476.     if (!this.userList) {
  477.       try {
  478.         this.buildUserList();
  479.       } catch (ex) {
  480.         // master password canceling throws an exception
  481.         this.userList = null;
  482.         this.listeners.push(aListener);
  483.         return;
  484.       }
  485.     }
  486.  
  487.     if (this.userCount > 0) {
  488.       if (!this.defaultUser) {
  489.         // get first user in list
  490.         for (var name in this.userList) {
  491.           this.defaultUser = name;
  492.           break;
  493.         }
  494.       }
  495.  
  496.       this.isAutoConnecting = true;
  497.  
  498.       // user queue
  499.       if (!this.multiuser) {
  500.         // single user - one person at a time in the queue
  501.         this.userQueue = new Array();
  502.         this.userQueue.push(this.defaultUser);
  503.       }
  504.  
  505.       this.checkAccounts();
  506.     }
  507.   }
  508.  
  509.   this.listeners.push(aListener);
  510.  
  511.   // for every new listener added, push login state
  512.   if (this.loggedIn) {
  513.     aListener.onStateChange(null, nsINotifierProgressListener.NOTIFIER_LOGGED_IN);
  514.   } else {
  515.     aListener.onStateChange(null, nsINotifierProgressListener.LOGOUT);
  516.   }
  517.  
  518.   return this.listeners.length;
  519. }
  520.  
  521. /**
  522.  * Removes an NotifierListener to this service
  523.  *
  524.  * @param aListener
  525.  */
  526. nsNotifierService.prototype.removeListener = function(aListener) {
  527.   var found = false;
  528.   var run = 0;
  529.  
  530.   while (!found && (run < this.listeners.length)) {
  531.     if (this.listeners[run] == aListener) {
  532.       this.listeners[run] = null;
  533.       found = true;
  534.     }
  535.     run++;
  536.   }
  537. }
  538.  
  539. /**
  540.  * Gets the reset state.  Reset is set if the user clicks/checks for new mail.
  541.  */
  542. nsNotifierService.prototype.getResetState = function(aUsername) {
  543.   return this.userList[aUsername].resetState;
  544. }
  545.  
  546. /**
  547.  * Sets the reset state
  548.  *
  549.  * @param aResetState
  550.  */
  551. nsNotifierService.prototype.setResetState = function(aUsername, aResetState) {
  552.   this.userList[aUsername].resetState = aResetState;
  553.  
  554.   // need to send an event so that the unread count will update.  NEW_MAIL will
  555.   // do for now, XXX: probably should have its own state.
  556.   this.pushStateChange(aUsername, nsINotifierProgressListener.NEW_MAIL);
  557. }
  558.  
  559. nsNotifierService.prototype.getNewMailMode = function(aUsername) {
  560.   return this.userList[aUsername].newMailMode;
  561. }
  562.  
  563. nsNotifierService.prototype.setNewMailMode = function(aUsername, aMode) {
  564.   this.userList[aUsername].newMailMode = aMode;
  565.  
  566.   this.pushStateChange(aUsername, nsINotifierProgressListener.USER_MODE_CHANGED);
  567. }
  568.  
  569. nsNotifierService.prototype.getInboxUnread = function(aUsername) {
  570.   return this.userList[aUsername].inboxUnread;
  571. }
  572.  
  573. nsNotifierService.prototype.getUnreadCount = function() {
  574.   return this.userList[aUsername].unreadEmails;
  575. }
  576.  
  577. nsNotifierService.prototype.getDisplayCount = function(aUsername) {
  578.   if (this.userList[aUsername].resetState) {
  579.     return 0;
  580.   } else {
  581.     if (this.getPrefBranch().getBoolPref("gm-notifier.ui.counter.showInbox")) {
  582.       return this.getInboxUnread(aUsername);
  583.     } else {
  584.       return this.userList[aUsername].unreadEmails;
  585.     }
  586.   }
  587. }
  588.  
  589. nsNotifierService.prototype.getNewCount = function(aUsername) {
  590.   var value;
  591.  
  592.   if (this.userList[aUsername].resetState) {
  593.     value = 0;
  594.   } else {
  595.     if (this.getPrefBranch().getBoolPref("gm-notifier.ui.counter.showInbox")) {
  596.       value = this.userList[aUsername].inboxNew;
  597.     } else {
  598.       value = this.userList[aUsername].newEmails;
  599.     }
  600.   }
  601.  
  602.   return value;
  603. }
  604.  
  605. nsNotifierService.prototype.getUsedMB = function(aUsername) {
  606.   return this.userList[aUsername].space_used_mb;
  607. }
  608.  
  609. nsNotifierService.prototype.getSpaceUsed = function(aUsername) {
  610.   return this.userList[aUsername].space_used_percent;
  611. }
  612.  
  613. nsNotifierService.prototype.getTotalSpace = function(aUsername) {
  614.   return this.userList[aUsername].total_mb;
  615. }
  616.  
  617. nsNotifierService.prototype.getFolderCount = function(aUsername) {
  618.   return this.userList[aUsername].folders.length;
  619. }
  620.  
  621. nsNotifierService.prototype.getFolderItem = function(aUsername, aPosition, sizeObj) {
  622.   sizeObj.value = 2;
  623.   return [this.userList[aUsername].folders[aPosition].name, this.userList[aUsername].folders[aPosition].unreadMail];
  624. }
  625.  
  626. nsNotifierService.prototype.getActiveUserCount = function() {
  627.   return this.loggedInUsers;
  628. }
  629.  
  630. nsNotifierService.prototype.getUserCount = function() {
  631.   // build the userlist
  632.   if (!this.userList) {
  633.     this.buildUserList();
  634.   }
  635.  
  636.   return this.userCount;
  637. }
  638.  
  639. nsNotifierService.prototype.getUserName = function(aUserNum) {
  640.   // make sure aUserNum is valid
  641.   if (aUserNum > this.userCount || aUserNum < 0) {
  642.     return;
  643.   }
  644.  
  645.   var i = 0;
  646.   var username = "";
  647.  
  648.   for (userName in this.userList) {
  649.     if (i == aUserNum) {
  650.       break;
  651.     }
  652.  
  653.     i++;
  654.   }
  655.  
  656.   return userName;
  657. }
  658.  
  659. nsNotifierService.prototype.getUserState = function(aUsername) {
  660.   var state = nsINotifierService.USER_STATE_LOGGED_OUT;
  661.  
  662.   if (this.userList[aUsername]) {
  663.     state = this.userList[aUsername].state;
  664.   }
  665.  
  666.   return state;
  667. }
  668.  
  669. nsNotifierService.prototype.removeUser = function(aUsername) {
  670.   if (!aUsername || !this.userList[aUsername]) {
  671.     return;
  672.   }
  673.  
  674.   // make copy, but without the user to remove
  675.   var newList = new Array();
  676.  
  677.   function copyObjectData(aObject) {
  678.     var obj = new Object();
  679.  
  680.     for (item in aObject) {
  681.       if (typeof(item) == "object") {
  682.         obj[item] = copyObjectData(aObject[item]);
  683.       } else {
  684.         obj[item] = aObject[item];
  685.       }
  686.     }
  687.  
  688.     return obj;
  689.   }
  690.  
  691.   for (username in this.userList) {
  692.     if (username != aUsername) {
  693.       newList[username] = copyObjectData(this.userList[username]);
  694.     } else {
  695.       this.userCount--;
  696.     }
  697.   }
  698.  
  699.   this.userList = newList;
  700. }
  701.  
  702. nsNotifierService.prototype.addUser = function(aUsername) {
  703.   if (this.userList[aUsername]) {
  704.     return;
  705.   }
  706.  
  707.   this.userList[aUsername] = this.newUserListItem(aUsername, null);
  708. }
  709.  
  710. nsNotifierService.prototype.getQueueCount = function() {
  711.   if (!this.userQueue) {
  712.     this.buildUserQueue();
  713.   }
  714.  
  715.   return this.userQueue.length;
  716. }
  717.  
  718. nsNotifierService.prototype.getQueueUserName = function(aUserNum) {
  719.   // make sure aUserNum is valid
  720.   if (aUserNum > this.userCount || aUserNum < 0) {
  721.     return null;
  722.   }
  723.  
  724.   return this.userQueue[aUserNum];
  725. }
  726.  
  727. nsNotifierService.prototype.setTimeout = function(aMinutes) {
  728.   // convert to ms
  729.   this.timeOut = (aMinutes * 60000);
  730.  
  731.   // set timer only if we are logged in
  732.   if (this.loggedIn) {
  733.     this.setTimer();
  734.   }
  735. }
  736.  
  737. /**
  738.  * Adds an item to the log
  739.  *
  740.  */
  741. nsNotifierService.prototype.logItem = function(aLogString) {
  742.   this.logString += aLogString + "|||";
  743. }
  744.  
  745. nsNotifierService.prototype.getLog = function() {
  746.   return this.logString;
  747. }
  748.  
  749. nsNotifierService.prototype.clearLog = function() {
  750.   this.logString = "";
  751. }
  752.  
  753. /*************** Private Methods ************/
  754.  
  755. nsNotifierService.prototype.talkToServer = function(aUsername, aURL, aPostData,
  756.                                                     aCookieData, aReferrer,
  757.                                                     aCallbackFunc) {
  758.   this.logItem("  talkToServer Called ("+aUsername+") with url: "+aURL);
  759.   //dump("\n\nurl: " + aURL);
  760.  
  761.   // the IO service
  762.   var ioService = Components.classes[kIOSERVICE_CONTRACTID].getService(nsIIOService);
  763.  
  764.   // create an nsIURI
  765.   var uri = ioService.newURI(aURL, null, null);
  766.  
  767.   //nsIInputStream
  768.   var uploadStream = Components.classes["@mozilla.org/io/string-input-stream;1"]
  769.     .createInstance(Components.interfaces.nsIStringInputStream);
  770.  
  771.   if (aPostData) {
  772.     this.logItem("    -- post data is: " + aPostData);
  773.     uploadStream.setData(aPostData, aPostData.length);
  774.   }
  775.  
  776.   // clean up if old channel exists.  Should never happen really!
  777.   if (this.channel) {
  778.     this.channel.cancel(Components.results.NS_BINDING_ABORTED);
  779.     this.channel = null;
  780.   }
  781.  
  782.   // get a channel for that nsIURI
  783.   this.channel = ioService.newChannelFromURI(uri);
  784.  
  785.   // get a httpchannel and make it a post
  786.   var httpChannel = this.channel.QueryInterface(nsIHttpChannel);
  787.  
  788.   // set a referrer
  789.   if (aReferrer) {
  790.     var referrerUri = ioService.newURI(aReferrer, null, null);
  791.     httpChannel.referrer = referrerUri;
  792.   }
  793.  
  794.   if (aPostData) {
  795.     var uploadChannel = this.channel.QueryInterface(Components.interfaces.nsIUploadChannel);
  796.     uploadChannel.setUploadStream(uploadStream, "application/x-www-form-urlencoded", -1);
  797.  
  798.     // order important - setUploadStream resets to get/put
  799.     httpChannel.requestMethod = "POST";
  800.   }
  801.  
  802.   if (aCookieData){
  803.     // httpChannel.setRequestHeader("Cookie", aCookieData, false);
  804.     this.logItem("    -- cookie data is: " + JSON.toString(aCookieData));
  805.     for (var run = 0; run < aCookieData.length; run++) {
  806.       httpChannel.setRequestHeader("Cookie", aCookieData[run], true);
  807.     }
  808.   }
  809.  
  810.   var observer = new this.observer(aCallbackFunc, aUsername, this);
  811.  
  812.   this.channel.notificationCallbacks = observer;
  813.   this.channel.asyncOpen(observer, null);
  814. }
  815.  
  816. nsNotifierService.prototype.checkAccounts = function() {
  817.   // checks accounts in the userqueue
  818.   if (!this.userQueue) {
  819.     this.buildUserQueue();
  820.   }
  821.  
  822.   this.currentUserQueue = 0;
  823.  
  824.   this.pushStateChange(null, nsINotifierProgressListener.ACCOUNTS_CHECK_INITIATED);
  825.  
  826.   this.accountCheckStart(this.userQueue[0]);
  827. }
  828.  
  829. nsNotifierService.prototype.accountCheckResult = function(aUsername, aStatus) {
  830.   if (aStatus == nsINotifierProgressListener.LOGIN_DETAILS_INVALID) {
  831.     this.logItem("  Login details were invalid");
  832.     this.userList[aUsername].state = nsINotifierService.USER_STATE_INVALID_DETAILS;
  833.  
  834.     if (this.userList[aUsername].state != nsINotifierService.USER_STATE_INVALID_DETAILS) {
  835.       if (this.userList[aUsername].state == nsINotifierService.USER_STATE_LOGGED_IN) {
  836.         // if was logged in, remove from logged in user count
  837.         this.loggedInUsers--;
  838.         this.clearCookieObject(aUsername);
  839.         this.getPrefBranch().setBoolPref("gm-notifier.userlist." + aUsername + ".loggedin", false);
  840.       }
  841.     }
  842.  
  843.   } else if (aStatus == nsINotifierProgressListener.LOGIN_FAILED) {
  844.     this.logItem("  Login connection failed");
  845.     this.userList[aUsername].state = nsINotifierService.USER_STATE_LOGGED_OUT;
  846.  
  847.     // if user was logged in, log him out.
  848.     if (this.userList[aUsername].state == nsINotifierService.USER_STATE_LOGGED_IN) {
  849.       this.loggedInUsers--;
  850.       this.clearCookieObject(aUsername);
  851.       this.getPrefBranch().setBoolPref("gm-notifier.userlist." + aUsername + ".loggedin", false);
  852.     }
  853.   } else if (aStatus == nsINotifierProgressListener.LOGIN_SUCCESS) {
  854.     // if user was logged out, log him in.
  855.     if (this.userList[aUsername].state == nsINotifierService.USER_STATE_LOGGED_OUT) {
  856.       this.loggedInUsers++;
  857.       this.getPrefBranch().setBoolPref("gm-notifier.userlist." + aUsername + ".loggedin", true);
  858.     }
  859.  
  860.     this.userList[aUsername].state = nsINotifierService.USER_STATE_LOGGED_IN;
  861.   }
  862.  
  863.   // if failed to login, check for default user
  864.   if (this.multiuser && aStatus != nsINotifierProgressListener.LOGIN_SUCCESS) {
  865.     if (this.defaultUser == aUsername) {
  866.       // if the default user didn't log in, we switch the default user out.
  867.       if (this.loggedInUsers > 0) {
  868.         // we have a user logged in already
  869.         for (name in this.userQueue) {
  870.           if (this.userList[aUsername].state == nsINotifierService.USER_STATE_LOGGED_IN) {
  871.             this.getPrefBranch().setCharPref("gm-notifier.users.default", name);
  872.             break;
  873.           }
  874.         }
  875.       } else {
  876.         // use the next person, if one exists
  877.         var name = this.userQueue[this.currentUserQueue+1];
  878.         if (name) {
  879.           this.getPrefBranch().setCharPref("gm-notifier.users.default", name);
  880.         }
  881.       }
  882.     }
  883.   } else if (!this.defaultUser && aStatus == nsINotifierProgressListener.LOGIN_SUCCESS) {
  884.     // no default user, make this person it!
  885.     this.getPrefBranch().setCharPref("gm-notifier.users.default", aUsername);
  886.   }
  887.  
  888.   this.pushStateChange(aUsername, aStatus);
  889. }
  890.  
  891. nsNotifierService.prototype.accountCheckStart = function(aUsername) {
  892.   // only log 2 sessions.  Helps reduce memory usage.
  893.   if (this.connectionCounter >= 2) {
  894.     this.logString = "";
  895.     this.connectionCounter = 0;
  896.   }
  897.  
  898.   // http observer - init
  899.   if (this.supportsMultiMode()) {
  900.     this.observerService.addObserver(this, "http-on-modify-request", false);
  901.     this.observerService.addObserver(this, "http-on-examine-response", false);
  902.   }
  903.  
  904.   this.startConnection(aUsername);
  905. }
  906.  
  907. nsNotifierService.prototype.accountCheckComplete = function() {
  908.   // http observer - cleanup
  909.   if (this.supportsMultiMode()) {
  910.     this.observerService.removeObserver(this, "http-on-modify-request");
  911.     this.observerService.removeObserver(this, "http-on-examine-response");
  912.   }
  913.  
  914.   this.channel = null;
  915.  
  916.   this.currentUserQueue++;
  917.  
  918.   if (this.currentUserQueue < this.userQueue.length) {
  919.     this.accountCheckStart(this.userQueue[this.currentUserQueue]);
  920.   } else {
  921.     // no longer auto connecting
  922.     this.isAutoConnecting = false;
  923.     this.currentUserQueue = null;
  924.  
  925.     // increment the connection counter
  926.     this.connectionCounter++;
  927.  
  928.     this.pushStateChange(null, nsINotifierProgressListener.ACCOUNTS_CHECK_COMPLETED);
  929.  
  930.     this.setTimeout(this.getPrefBranch().getIntPref("gm-notifier.update.interval"));
  931.   }
  932. }
  933.  
  934. /**
  935.  * startConnection and callback are the Gmail specific parts.
  936.  */ 
  937.  
  938.  
  939. var gConnectionPhases = {start: 1, gmail1phase1: 2, gmail2phase1: 3, finish: 4, finish2: 5};
  940.  
  941. nsNotifierService.prototype.startConnection = function (aUsername) {
  942.   this.logItem("  StartConnection: Init");
  943.  
  944.   if (!aUsername) {
  945.     return;
  946.   }
  947.  
  948.   var start_time = (new Date()).getTime();
  949.   this.logItem("  -- Username ("+aUsername+") found ");
  950.  
  951.   if (!this.userList[aUsername]) {
  952.     this.logItem("  -- Uhoh, userlist didn't have user, create one");
  953.     this.userList[aUsername] = this.newUserListItem(aUsername, null);
  954.   }
  955.  
  956.   this.userList[aUsername].resetState = false;
  957.   this.reusingCookie = false;
  958.   this.connectionPhase = gConnectionPhases.start;
  959.  
  960.   this.pushStateChange(aUsername, nsINotifierProgressListener.LOGIN_INITIATED);
  961.  
  962.   var urlprotocol = "https://";//this.getURLProtocol();
  963.   var hasHostedDomain = this.isHostedDomain(aUsername);
  964.  
  965.   // if we have stored cookie data, go directly to last phase
  966.   if (this.userList[aUsername].cookieObject.GX) {
  967.     this.reusingCookie = true;
  968.     this.logItem("  -- attempting quick connect");
  969.  
  970.     if (this.userList[aUsername].isGmail20) {
  971.       this.connectionPhase = gConnectionPhases.finish2;
  972.       var url = urlprotocol + "mail.google.com/mail/?ik="+this.userList[aUsername].idkey+"&view=tl&start=0&num=25&rt=h&q=is%3Aunread&search=query";
  973.  
  974.       this.talkToServer(aUsername, url,
  975.                         null, null, urlprotocol + "mail.google.com/",
  976.                         this.hitch(this, this.callback));
  977.     } else {
  978.       this.connectionPhase = gConnectionPhases.finish;
  979.       this.talkToServer(aUsername, urlprotocol+ "mail.google.com/mail/?search=query&q=is%3Aunread&view=tl&start=0&init=1&ui=1",
  980.                         null, null, urlprotocol + "mail.google.com/",
  981.                         this.hitch(this, this.callback));
  982.     }
  983.   } else if (hasHostedDomain && (this.userList[aUsername].cookieObject.GXAS || this.userList[aUsername].cookieObject.GXAS_SEC)) {
  984.     this.reusingCookie = true;
  985.     this.logItem("  -- attempting hosted quick connect");
  986.  
  987.     var hosteddomain = this.userList[aUsername].hosteddomain;
  988.  
  989.     if (this.userList[aUsername].isGmail20) {
  990.       this.connectionPhase = gConnectionPhases.finish2;
  991.       // XXX: here also had to hardcode http
  992.       this.talkToServer(aUsername, "http://mail.google.com/a/"+hosteddomain+"/?ik="+this.userList[aUsername].idkey+"&view=tl&start=0&num=25&rt=h&q=is%3Aunread&search=query",
  993.                         null, null, urlprotocol + "mail.google.com/a/"+hosteddomain,
  994.                         this.hitch(this, this.callback));
  995.     } else {
  996.       this.connectionPhase = gConnectionPhases.finish;
  997.       this.talkToServer(aUsername, urlprotocol+ "mail.google.com/a/"+hosteddomain+"/?search=query&q=is%3Aunread&view=tl&start=0&init=1&ui=1",
  998.                         null, null, urlprotocol + "mail.google.com/a/"+hosteddomain,
  999.                         this.hitch(this, this.callback));
  1000.     }
  1001.   } else {
  1002.     // set GMAIL_LOGIN
  1003.     /*var now = (new Date()).getTime();
  1004.     var cookie = "T" + start_time + "/" + start_time + "/" + now;
  1005.     var d = new Date();
  1006.     var expr = new Date(d.getFullYear()+1);
  1007.     this.userList[aUsername].cookieObject.GMAIL_LOGIN = "GMAIL_LOGIN="+cookie;*/
  1008.  
  1009.     if (hasHostedDomain) {
  1010.       this.exploritorySurgeryHosted(aUsername);
  1011.     } else {
  1012.       this.exploritorySurgery(aUsername);
  1013.     }
  1014.   }
  1015. }
  1016.  
  1017. nsNotifierService.prototype.exploritorySurgery = function(aUsername) {
  1018.   // load in the main gmail page and see what it tells us
  1019.   this.logItem("    exploritorySurgery for "+aUsername);
  1020.  
  1021.   this.talkToServer(aUsername, "https://www.google.com/accounts/ServiceLogin?service=mail", "", null, "https://www.google.com", this.hitch(this, this.exploritorySurgeryCallback));
  1022. }
  1023.  
  1024. nsNotifierService.prototype.exploritorySurgeryHosted = function(aUsername) {
  1025.   // load in the main gmail page and see what it tells us
  1026.   this.logItem("    exploritorySurgery for hosted account: "+aUsername);
  1027.  
  1028.   var index = aUsername.indexOf("@");
  1029.   var realusername =  aUsername.substring(0, index);
  1030.   var hosteddomain = aUsername.substring(index + 1, aUsername.length);
  1031.   this.userList[aUsername].hosteddomain = hosteddomain;
  1032.   this.logItem("  -- hosted domain found: " + hosteddomain);
  1033.  
  1034.   this.talkToServer(aUsername, "https://www.google.com/a/"+this.getHostedDomain(aUsername)+"/ServiceLogin?service=mail", "", null, "https://www.google.com", this.hitch(this, this.exploritorySurgeryHostedCallback));
  1035. }
  1036.  
  1037. nsNotifierService.prototype.exploritorySurgeryCallback = function(aData, aRequest, aUsername) {
  1038.   var val = aData.indexOf('<input type="hidden" name="service"');
  1039.  
  1040.   if (val >= 0) {
  1041.         var data = {}
  1042.  
  1043.         var forms = aData.match(/id="gaia_loginform"((.|[\n\r\s])*?)<\/form>/i);
  1044.         if (forms) {
  1045.           var inputs = forms[1].match(new RegExp('<input(.*)[^>]*>', "gi"));
  1046.         
  1047.           for (var i = 0; i < inputs.length; i++) {
  1048.             var name = inputs[i].match(new RegExp('name="([^".]*)"', "i"));
  1049.             var value = inputs[i].match(new RegExp('value="(.*)"', "i"));
  1050.  
  1051.             if (name && value) {
  1052.               data[name[1]] = value[1];
  1053.             }
  1054.           }
  1055.         }
  1056.  
  1057.         this.phaseStart(aUsername, data);
  1058.   } else {
  1059.     // go to phase 1
  1060.     this.phaseStart(aUsername);
  1061.   }
  1062. }
  1063.  
  1064. nsNotifierService.prototype.exploritorySurgeryHostedCallback = function(aData, aRequest, aUsername) {
  1065.   var val = aData.indexOf('<input type="hidden" name="service"');
  1066.  
  1067.   if (val >= 0) {
  1068.         var data = {}
  1069.  
  1070.         var forms = aData.match(/id="gaia_loginform"((.|[\n\r\s])*?)<\/form>/i);
  1071.         if (forms) {
  1072.           var inputs = forms[1].match(new RegExp('<input(.*)[^>]*>', "gi"));
  1073.  
  1074.           for (var i = 0; i < inputs.length; i++) {
  1075.             var name = inputs[i].match(new RegExp('name="([^".]*)"', "i"));
  1076.             var value = inputs[i].match(new RegExp('value="(.*)"', "i"));
  1077.  
  1078.             if (name && value) {
  1079.               data[name[1]] = value[1];
  1080.             }
  1081.           }
  1082.         }
  1083.  
  1084.         this.phaseStartHosted(aUsername, data);
  1085.   } else {
  1086.     // go to phase 1
  1087.     this.phaseStartHosted(aUsername);
  1088.   }
  1089. }
  1090.  
  1091. nsNotifierService.prototype.phaseStart = function(aUsername, aInputs) {
  1092.   var data = "";
  1093.  
  1094.   if (aInputs) {
  1095.     aInputs["Email"] = aUsername;
  1096.     aInputs["Passwd"] = this.getPassword(aUsername);
  1097.     aInputs["continue"] = "http://mail.google.com/mail/?ui=1&zy=l"
  1098.  
  1099.     var c = 0;
  1100.     for (var label in aInputs) {
  1101.       data += (c == 0 ? "?": "&")+label + "=" + encodeURIComponent(aInputs[label]);
  1102.       c++;
  1103.     }
  1104.   } else {
  1105.     data = "?service=mail&Email=" + encodeURIComponent(aUsername)
  1106.              + "&Passwd=" + encodeURIComponent(this.getPassword(aUsername)) +
  1107.              "&rm=false&null=Sign%20in&continue=https://mail.google.com/mail?nsr=1&ui=html&zy=l";
  1108.   }
  1109.  
  1110.   this.talkToServer(aUsername, "https://www.google.com/accounts/ServiceLoginAuth?service=mail", data,
  1111.                     null, "https://www.google.com/accounts/ServiceLoginAuth", this.hitch(this, this.callback));
  1112. }
  1113.  
  1114. nsNotifierService.prototype.phaseStartHosted = function(aUsername, aInputs) {
  1115.   var data = "";
  1116.  
  1117.   var index = aUsername.indexOf("@");
  1118.   var realusername =  aUsername.substring(0, index);
  1119.   var hosteddomain = aUsername.substring(index + 1, aUsername.length);
  1120.  
  1121.   if (aInputs) {
  1122.     aInputs["Email"] = realusername;
  1123.     aInputs["Passwd"] = (this.getPassword(aUsername));
  1124.     aInputs["continue"] = "https://mail.google.com/a/"+hosteddomain+"/";
  1125.  
  1126.     var c = 0;
  1127.     for (var label in aInputs) {
  1128.       data += (c == 0 ? "?": "&")+label + "=" + encodeURIComponent(aInputs[label]);
  1129.       c++;
  1130.     }
  1131.   } else {
  1132.     data = "at=null&continue="+encodeURIComponent("https://mail.google.com/a/"+hosteddomain+"/")+"&service=mail&Email=" + escape(realusername)
  1133.            + "&Passwd=" + encodeURIComponent(this.getPassword(aUsername));
  1134.   }
  1135.  
  1136.   this.talkToServer(aUsername, "https://www.google.com/a/"+hosteddomain+"/LoginAction2?service=mail", data,
  1137.                     null, "https://www.google.com/accounts/ServiceLoginAuth", this.hitch(this, this.callback));
  1138. }
  1139.  
  1140. /*
  1141.    Phase              Description
  1142.    0                  Before anything has happend
  1143.    1                  First connection
  1144.    ...
  1145. */
  1146.  
  1147. nsNotifierService.prototype.callback = function(aData, aRequest, aUsername) {
  1148.   this.logItem("    callback called for ("+aUsername+"), phase" + this.connectionPhase);
  1149.  
  1150.   this.logItem("    -- data ("+this.connectionPhase+")");
  1151.  
  1152.   //dump("\n\n\n----------\n"+aData+"\n----------\n\n\n");
  1153.   this.processConnectionPhase(aData, aRequest, aUsername);
  1154. }
  1155.  
  1156. nsNotifierService.prototype.processConnectionPhase = function(aData, aRequest, aUsername) {
  1157.   var urlprotocol = this.getURLProtocol();
  1158.  
  1159.   switch (this.connectionPhase) {
  1160.     case gConnectionPhases.start:
  1161.       var cookieData;
  1162.  
  1163.       // if no cookies sent, an exception is thrown
  1164.       /* try{
  1165.           var httpChannel = aRequest.QueryInterface(Components.interfaces.nsIHttpChannel)
  1166.           cookieData = httpChannel.getRequestHeader("cookie");
  1167.         } catch(e){} */
  1168.       var val = aData.indexOf("location.replace");
  1169.       var gmail20 = false;
  1170.  
  1171.       // gmail 2.0 ?
  1172.       if (val < 0) {
  1173.         // 2.0 has a meta redirect
  1174.         // XXX: what about hosted!!!
  1175.         val = aData.indexOf("URL=http://mail.google.com/mail");
  1176.  
  1177.         if (val < 0) {
  1178.           // old gmail 2.0
  1179.           val = aData.indexOf("MainPage.CheckLoaded();");
  1180.         }
  1181.  
  1182.         // newer way ?
  1183.         if (val < 0) {
  1184.           val = aData.indexOf("function onLoadTimeout()");
  1185.         }
  1186.  
  1187.         if (val > 0) {
  1188.           gmail20 = true;
  1189.           this.userList[aUsername].isGmail20 = true;
  1190.           this.logItem(" -- gmail 2.0 detected");
  1191.         }
  1192.  
  1193.         if (val < 0 && this.isHostedDomain(aUsername)) {
  1194.           // hosted gmail 2.0?
  1195.           val = aData.indexOf("ID_KEY:");
  1196.  
  1197.           if (val > 0) {
  1198.             this.logItem(" -- hosted gmail 2.0 detected");
  1199.             this.userList[aUsername].isGmail20 = true;
  1200.             gmail20 = true;
  1201.           } else {
  1202.             // last ditch attempts
  1203.             // look for <link rel="alternate" type="application/atom+xml"
  1204.             val = aData.indexOf('<link rel="alternate" type="application/atom+xml"');
  1205.             if (val > 0) {
  1206.               this.logItem(" -- hosted gmail 2.0 detected");
  1207.               this.userList[aUsername].isGmail20 = true;
  1208.               gmail20 = true;
  1209.             }
  1210.           }
  1211.         }
  1212.  
  1213.         if (val < 0) {
  1214.           this.userList[aUsername].isGmail20 = false;
  1215.         }
  1216.       }
  1217.  
  1218.       if (val < 0) {
  1219.         // XXX - check if its an image request
  1220.  
  1221.         // check if it is a password re-request
  1222.         if (aData.indexOf("<form action=\"LoginAuth\"") >= 0 || 
  1223.             aData.indexOf("errormsg_0_Passwd") >= 0) {
  1224.           this.logItem(encodeURIComponent(aData));
  1225.           this.accountCheckResult(aUsername, nsINotifierProgressListener.LOGIN_DETAILS_INVALID);
  1226.         } else {
  1227.           this.accountCheckResult(aUsername, nsINotifierProgressListener.LOGIN_FAILED);
  1228.         }
  1229.  
  1230.         this.accountCheckComplete();
  1231.         return;
  1232.       }
  1233.  
  1234.       var url = urlprotocol;
  1235.       if (this.userList[aUsername].hosteddomain) {
  1236.         url += "mail.google.com/hosted/" + this.userList[aUsername].hosteddomain;
  1237.       } else {
  1238.         url += "mail.google.com/mail";
  1239.       }
  1240.  
  1241.       if (gmail20) {
  1242.         if (this.isHostedDomain(aUsername)) {
  1243.           // we can skip to the next phase here, as ID key is present already
  1244.           // for hosted gmail 2.0 accounts
  1245.           this.connectionPhase = gConnectionPhases.gmail2phase1;
  1246.           this.processConnectionPhase(aData, aRequest, aUsername);
  1247.         } else {
  1248.           var regurl = new RegExp('URL=(.*)"').exec(aData);
  1249.           if (regurl && regurl[1]) {
  1250.             url = regurl[1];
  1251.           } else {
  1252.           }
  1253.  
  1254.           // XXX: hack - need to only load cookies for the domain!
  1255.           delete this.userList[aUsername].cookieObject.GAUSR;
  1256.  
  1257.           this.connectionPhase = gConnectionPhases.gmail2phase1;
  1258.           this.talkToServer(aUsername, url, null, null, url+"/",
  1259.                             this.hitch(this, this.callback));
  1260.         }
  1261.       } else {
  1262.         //var match = aData.match(/location.replace\((.*)\)/gm);
  1263.         //url = match[0].substr(18, match[0].length-2-18);
  1264.         this.connectionPhase = gConnectionPhases.gmail1phase1;
  1265.         this.talkToServer(aUsername, url + "?ui", null, null, url+"/",
  1266.                           this.hitch(this, this.callback));
  1267.       }
  1268.       break;
  1269.  
  1270.     case gConnectionPhases.gmail1phase1:
  1271.       var url = urlprotocol;
  1272.       if (this.userList[aUsername].hosteddomain) {
  1273.         url += "mail.google.com/hosted/" + this.userList[aUsername].hosteddomain;
  1274.       } else {
  1275.         url += "mail.google.com/mail";
  1276.       }
  1277.  
  1278.       this.connectionPhase = gConnectionPhases.finish;
  1279.       this.logItem("final url: "+url);
  1280.       this.talkToServer(aUsername,
  1281.                         url + "/?search=query&q=is%3Aunread&view=tl&start=0&init=1&ui=1",
  1282.                         null, null, url, this.hitch(this, this.callback));
  1283.       break;
  1284.  
  1285.     case gConnectionPhases.gmail2phase1:
  1286.       this.logItem("  looking for idkey");
  1287.  
  1288.       // figure out the id key
  1289.       var result = new RegExp("ID_KEY = \'([a-zA-Z0-9]*)\'").exec(aData);
  1290.  
  1291.       if (!result) {
  1292.         // can also be: ID_KEY:'...'
  1293.         result = new RegExp("ID_KEY:\'([a-zA-Z0-9]*)\'").exec(aData);
  1294.       }
  1295.  
  1296.       if (!result) {
  1297.         // can also be: ID_KEY:"..."
  1298.         result = new RegExp("ID_KEY:\"([a-zA-Z0-9]*)\"").exec(aData);
  1299.         var newHostedType = true;
  1300.       }
  1301.  
  1302.       var url = urlprotocol;
  1303.       if (this.userList[aUsername].hosteddomain) {
  1304.         if (!newHostedType) {
  1305.           // XXX: blah, need to hard code http here for some reason - but not for
  1306.           //"new" hosted accounts
  1307.           url = "http://mail.google.com/a/" + this.userList[aUsername].hosteddomain+"/";
  1308.         } else {
  1309.           url += "mail.google.com/a/" + this.userList[aUsername].hosteddomain+"/";
  1310.         }
  1311.       } else {
  1312.         url += "mail.google.com/mail";
  1313.       }
  1314.  
  1315.       // failed to login
  1316.       if (!result) {
  1317.         if (this.reusingCookie) {
  1318.           this.logItem("    - Login failed, but were reusing cookie data, so trying afresh.");
  1319.  
  1320.           // if we failed but were reusing the cookie, clear it and restart
  1321.           this.clearCookieObject(aUsername);
  1322.           this.reusingCookie = false;
  1323.  
  1324.           this.startConnection(aUsername);
  1325.           break;
  1326.         } else {
  1327.           // if non en-US, we need to switch to gmail 1.0
  1328.           if (aData.indexOf('(js.location.replace("?ui=1' > 0)) {
  1329.               this.userList[aUsername].isGmail20 = false;
  1330.               this.logItem("  - Not Gmail 2.0 after all - probably non-US locale.");
  1331.  
  1332.               this.connectionPhase = gConnectionPhases.finish;
  1333.               this.talkToServer(aUsername,
  1334.                         url + "/?search=query&q=is%3Aunread&view=tl&start=0&init=1&ui=1",
  1335.                         null, null, url, this.hitch(this, this.callback));
  1336.               break;
  1337.           } else {
  1338.             this.logItem("    - Login failed, page not the correct one.");
  1339.  
  1340.             this.accountCheckResult(aUsername, nsINotifierProgressListener.LOGIN_FAILED);
  1341.             this.accountCheckComplete();
  1342.             break;
  1343.           }
  1344.         }
  1345.       }
  1346.       var idkey = result[1];
  1347.  
  1348.       this.userList[aUsername].idkey = idkey;
  1349.  
  1350.       url += "?ik="+idkey+"&view=tl&start=0&num=25&rt=h&q=is%3Aunread&search=query";
  1351.       this.connectionPhase = gConnectionPhases.finish2;
  1352.  
  1353.       this.talkToServer(aUsername, url, null, null, url+"/", this.hitch(this, this.callback));
  1354.  
  1355.       break;
  1356.  
  1357.     case gConnectionPhases.finish2:
  1358.       // gmail 2.0 finish
  1359.       this.logItem("  connecting to gmail 2.0 complete.");
  1360.  
  1361.       // check if right page - has to have a ti
  1362.       if (!aData.match(/\["ti",.*\n.*\]/gm)) {
  1363.         // failed to login
  1364.         if (this.reusingCookie) {
  1365.           this.logItem("    - Login failed, but were reusing cookie data, so trying afresh.");
  1366.  
  1367.           // if we failed but were reusing the cookie, clear it and restart
  1368.           this.clearCookieObject(aUsername);
  1369.           this.reusingCookie = false;
  1370.  
  1371.           this.startConnection(aUsername);
  1372.         } else {
  1373.           this.logItem("    - Login failed, final page not the correct one.");
  1374.           //this.logItem(aData);
  1375.  
  1376.           this.accountCheckResult(aUsername, nsINotifierProgressListener.LOGIN_FAILED);
  1377.           this.accountCheckComplete();
  1378.         }
  1379.  
  1380.         return;
  1381.       }
  1382.  
  1383.       // account check was successfull
  1384.       this.accountCheckSuccess(aUsername);
  1385.  
  1386.       var obj = {totalunread: 0, inboxunread: 0, labels: [], quota: {}};
  1387.  
  1388.       // handle the total unread
  1389.       //   example: D(["ti","Search results for: is:unread",900,1,3000,"is:unread",_A(),"621a",700]);
  1390.       var ti = aData.match(/\["ti",.*\n.*\]/gm);
  1391.       this.logItem("  -  ti is " + ti);
  1392.  
  1393.       var arr = ti[0].split(",");
  1394.       obj.totalunread = parseInt(arr[2], 10);
  1395.       this.logItem("  -  total unread count is " + obj.totalunread);
  1396.  
  1397.       // now handle inbox and labels, which are stored in ld
  1398.       var ld = aData.match(/\["ld",.*\n(.*]\n)+\]/gm);
  1399.       this.logItem("  -  ld is " + ld.length);
  1400.  
  1401.       // setup a sandbox for eval usage
  1402.       var s = Components.utils.Sandbox("about:blank");
  1403.  
  1404.       // ld has three parts = "ld", general data (inbox, span, etc) and finally labels
  1405.       var data = Components.utils.evalInSandbox(ld[0], s);
  1406.       // need the ^i entry, which is the first, and the unread count is in the 2nd position
  1407.       obj.inboxunread = data[1][0][1];
  1408.  
  1409.       // now handle labels
  1410.       var labels = data[2];
  1411.  
  1412.       // utf-8 fun
  1413.       var conv = Components.classes["@mozilla.org/intl/utf8converterservice;1"].getService(Components.interfaces.nsIUTF8ConverterService);
  1414.  
  1415.       for (var i = 0; i < labels.length; i++) {
  1416.         var name = escape(conv.convertStringToUTF8(labels[i][0], "utf-8", false));
  1417.         var unread = labels[i][1];
  1418.         obj.labels.push({name: name, unread: unread});
  1419.       }
  1420.  
  1421.       // now handle quota
  1422.       var qu = aData.match(/\["qu",.*\]/);
  1423.       myArray = Components.utils.evalInSandbox(qu[0], s);
  1424.  
  1425.       obj.quota.spaceused = myArray[1];
  1426.       obj.quota.totalmb = myArray[2];
  1427.       obj.quota.spaceusedpercent = myArray[3];
  1428.  
  1429.       this.updateUserList(aUsername, obj);
  1430.       this.accountCheckComplete();
  1431.       break;
  1432.  
  1433.  
  1434.     case gConnectionPhases.finish:
  1435.       this.logItem("  connecting to gmail complete.");
  1436.  
  1437.       // Gmail now serves 2 versions of the ds string:
  1438.       // D(["ds",46,0,0,0,0,1298,0] or
  1439.       // D(["ds",[["inbox",3]\n,["drafts",2]\n,["spam",1053]\n]\n]n);
  1440.  
  1441.       var val;
  1442.       var newDS = false;
  1443.  
  1444.       if (aData.match(/\["ds",\[\[/)) {
  1445.         // new way
  1446.          this.logItem("    -- new ds");
  1447.         val = aData.match(/\["ds",.*\n(.*]\n)+\]/gm);
  1448.  
  1449.         newDS = true;
  1450.       } else {
  1451.         val = aData.match(/\["ds",.*\]/);
  1452.         this.logItem("    -- old ds");
  1453.       }
  1454.  
  1455.       if (!val) {
  1456.         // failed to login
  1457.         if (this.reusingCookie) {
  1458.           this.logItem("    - Login failed, but were reusing cookie data, so trying afresh.");
  1459.  
  1460.           // if we failed but were reusing the cookie, clear it and restart
  1461.           this.clearCookieObject(aUsername);
  1462.           this.reusingCookie = false;
  1463.  
  1464.           this.startConnection(aUsername);
  1465.         } else {
  1466.           this.logItem("    - Login failed, final page not the correct one.");
  1467.           //this.logItem(aData);
  1468.  
  1469.           this.accountCheckResult(aUsername, nsINotifierProgressListener.LOGIN_FAILED);
  1470.           this.accountCheckComplete();
  1471.         }
  1472.  
  1473.         return;
  1474.       }
  1475.  
  1476.       if (!this.multiuser) {
  1477.         // if we are in single user mode, set the user to be the default
  1478.         var defaultUser = this.getPrefBranch().getCharPref("gm-notifier.users.default");
  1479.  
  1480.         if (defaultUser != aUsername) {
  1481.           this.getPrefBranch().setCharPref("gm-notifier.users.default", aUsername);
  1482.         }
  1483.       }
  1484.  
  1485.       // if we aren't logged in, we are now and tell the world
  1486.       if (!this.loggedIn) {
  1487.         // update the pref
  1488.         this.getPrefBranch().setBoolPref("gm-notifier.loggedin", true);
  1489.  
  1490.         this.loggedIn = true;
  1491.         this.pushStateChange(null, nsINotifierProgressListener.NOTIFIER_LOGGED_IN);
  1492.       }
  1493.  
  1494.       // success!
  1495.       this.accountCheckResult(aUsername, nsINotifierProgressListener.LOGIN_SUCCESS);
  1496.  
  1497.       // get the unread count
  1498.       var ts = aData.match(/\["ts",.*\]/gm);
  1499.       var myArray = (JSON.fromString(ts[0]));
  1500.       this.logItem("  -  ts is " + ts);
  1501.  
  1502.       var totalUnread = myArray[3];
  1503.  
  1504.       // handle inbox
  1505.       myArray = JSON.fromString(val[0]);
  1506.       this.logItem("  -  val[0] " +  val[0]);
  1507.  
  1508.       var inboxUnread = 0;
  1509.       if (newDS) {
  1510.         inboxUnread = myArray[1][0][1];
  1511.       } else {
  1512.         inboxUnread = myArray[1];
  1513.       }
  1514.  
  1515.       this.logItem("  -  inboxUnread " +  inboxUnread + " and  this.userList[aUsername].inboxUnread is " +  this.userList[aUsername].inboxUnread);
  1516.  
  1517.       this.userList[aUsername].inboxNew = inboxUnread -  this.userList[aUsername].inboxUnread;
  1518.       this.userList[aUsername].inboxUnread = inboxUnread;
  1519.  
  1520.       // clear the array
  1521.       this.userList[aUsername].folders = new Array();
  1522.       this.userList[aUsername].folders.push(this.createFolder("inbox", inboxUnread));
  1523.  
  1524.       // XXX: do we really need this?
  1525.       if (this.userList[aUsername].inboxNew < 0) {
  1526.         this.userList[aUsername].inboxNew = 0;
  1527.       }
  1528.  
  1529.       // utf-8 fun
  1530.       var conv = Components.classes["@mozilla.org/intl/utf8converterservice;1"].getService(Components.interfaces.nsIUTF8ConverterService);
  1531.  
  1532.       // handle labels
  1533.       var labelsVal = aData.match(/\["ct",.*\n(.*]\n)+\]/gm);
  1534.       if (labelsVal) {
  1535.         var labelsArray = JSON.fromString(labelsVal[0])[1];
  1536.  
  1537.         for (var run = 0; run < labelsArray.length; run++) {
  1538.           var folderName = escape(conv.convertStringToUTF8(labelsArray[run][0], "utf-8", false));
  1539.  
  1540.           // gmail skins extension workaround
  1541.           var skip = (folderName.indexOf("gmskin%3A") == 0);
  1542.  
  1543.           if (!skip) {
  1544.            this.userList[aUsername].folders.push(this.createFolder(folderName, labelsArray[run][1]));
  1545.            this.logItem("  - Folder found (name: " + folderName + " and unread emails: " + labelsArray[run][1] + ")");
  1546.           }
  1547.         }
  1548.       }
  1549.  
  1550.       // new/unread mail check
  1551.       this.logItem("  -inboxUnread: " + inboxUnread + ", unreadEmails: " + this.userList[aUsername].unreadEmails + ", inboxNew: "+this.userList[aUsername].inboxNew+", totalunread: " + totalUnread);
  1552.  
  1553.       var showInboxOnly = this.getPrefBranch().getBoolPref("gm-notifier.ui.counter.showInbox");
  1554.       var hasNewMail = (totalUnread > this.userList[aUsername].unreadEmails);
  1555.  
  1556.       if (!hasNewMail && showInboxOnly) {
  1557.         hasNewMail = (this.userList[aUsername].inboxNew > 0);
  1558.       }
  1559.  
  1560.       if ((this.userList[aUsername].unreadEmails != null) && hasNewMail) {
  1561.         this.logItem("  New Unread Mail Found!");
  1562.         // new email
  1563.         this.userList[aUsername].newEmails = totalUnread - this.userList[aUsername].unreadEmails;
  1564.         this.userList[aUsername].unreadEmails = totalUnread;
  1565.  
  1566.         if (showInboxOnly && (this.userList[aUsername].inboxNew == 0)) {
  1567.           // show inbox only, but new mail wasn't in inbox
  1568.           this.pushStateChange(aUsername, nsINotifierProgressListener.NO_NEW_MAIL);
  1569.           //this.setNewMailMode(aUsername, false);
  1570.         } else {
  1571.           this.pushStateChange(aUsername, nsINotifierProgressListener.NEW_MAIL);
  1572.           this.setNewMailMode(aUsername, true);
  1573.           var count = this.getNewCount(aUsername);
  1574.           this.newMailNotification(aUsername, count);
  1575.           this.newMailCount = count;
  1576.         }
  1577.       } else if (this.userList[aUsername].unreadEmails == null && totalUnread > 0) {
  1578.         // first time
  1579.         this.logItem("  New Mail Found!");
  1580.         this.userList[aUsername].newEmails = totalUnread;
  1581.         this.userList[aUsername].unreadEmails = totalUnread;
  1582.  
  1583.         if (showInboxOnly && (this.userList[aUsername].inboxNew == 0)) {
  1584.           // show inbox only, but new mail wasn't in inbox
  1585.           this.pushStateChange(aUsername, nsINotifierProgressListener.NO_NEW_MAIL);
  1586.         } else {
  1587.           this.pushStateChange(aUsername, nsINotifierProgressListener.NEW_MAIL);
  1588.           this.setNewMailMode(aUsername, true);
  1589.           this.logItem("  - amount of new mail is " + this.userList[aUsername].newEmails);
  1590.           var count = this.getDisplayCount(aUsername);
  1591.           this.logItem("  - mail notification about to be set, new mail count is " + count);
  1592.           this.newMailNotification(aUsername, count);
  1593.           this.newMailCount = count;
  1594.         }
  1595.       } else {
  1596.         // check if the count decreased
  1597.         var decreased = false;
  1598.  
  1599.         if (totalUnread < this.userList[aUsername].unreadEmails) {
  1600.           decreased = true;
  1601.         }
  1602.  
  1603.         this.userList[aUsername].unreadEmails = totalUnread;
  1604.         this.logItem("  No New Unread Mail Found!");
  1605.         this.pushStateChange(aUsername, nsINotifierProgressListener.NO_NEW_MAIL);
  1606.  
  1607.         // only set mode to false if the count decreased. So if the user hasn't
  1608.         // checked the mail and we had new mail before, we stay in the new mail
  1609.         // mode.
  1610.         if (decreased) {
  1611.           this.userList[aUsername].newEmails = 0;
  1612.           this.setNewMailMode(aUsername, false);
  1613.         } else if (this.getNewMailMode(aUsername) &&
  1614.                    this.getPrefBranch().getBoolPref("gm-notifier.notification.repeat")) {
  1615.           this.logItem("  - mail notification about to be set again, new mail count is " + this.newMailCount);
  1616.           this.newMailNotification(aUsername, this.newMailCount);
  1617.         } else {
  1618.           this.userList[aUsername].newEmails = 0;
  1619.         }
  1620.       }
  1621.  
  1622.       val = aData.match(/\["qu",.*\]/);
  1623.       myArray = JSON.fromString(val[0]);
  1624.  
  1625.       var spaceused, totalmb, spaceusedpercent;
  1626.       spaceused = myArray[1];
  1627.       totalmb = myArray[2];
  1628.       spaceusedpercent = myArray[3];
  1629.  
  1630.       // if we have %, parseInt time.  This happens for localized gmail right
  1631.       // now
  1632.       if (spaceusedpercent.indexOf("%") != -1) {
  1633.         function _parseInt(aString) {
  1634.           var parsed = parseInt(aString, 10);
  1635.           if (parsed != NaN) {
  1636.             return parsed;
  1637.           }
  1638.  
  1639.           return aString;
  1640.         }
  1641.  
  1642.         spaceused = _parseInt(spaceused);
  1643.         totalmb = _parseInt(totalmb);
  1644.         spaceusedpercent = _parseInt(spaceusedpercent);
  1645.       }
  1646.  
  1647.       this.userList[aUsername].space_used_mb = spaceused;
  1648.       this.userList[aUsername].total_mb =totalmb;
  1649.       this.userList[aUsername].space_used_percent = spaceusedpercent;
  1650.  
  1651.       this.accountCheckComplete();
  1652.       //this.setTimer();
  1653.       break;
  1654.   }
  1655. }
  1656.  
  1657. nsNotifierService.prototype.updateUserList = function(aUsername, aData) {
  1658.   var user = this.userList[aUsername];
  1659.   var totalUnread = aData.totalunread;
  1660.  
  1661.   this.logItem("  -  inboxUnread " +  aData.inboxunread + " and  this.userList[aUsername].inboxUnread is " +  user.inboxUnread);
  1662.  
  1663.   user.inboxNew = aData.inboxunread -  user.inboxUnread;
  1664.   user.inboxUnread = aData.inboxunread;
  1665.  
  1666.   // XXX: do we really need this?
  1667.   if (user.inboxNew < 0) {
  1668.     user.inboxNew = 0;
  1669.   }
  1670.  
  1671.   // folders
  1672.  
  1673.   // clear the array
  1674.   user.folders = new Array();
  1675.   user.folders.push(this.createFolder("inbox", aData.inboxunread));
  1676.  
  1677.   for (var i = 0; i < aData.labels.length; i++) {
  1678.     // gmail skins extension workaround
  1679.     var skip = (aData.labels[i].name.indexOf("gmskin%3A") == 0);
  1680.  
  1681.     if (!skip) {
  1682.      user.folders.push(this.createFolder(aData.labels[i].name, aData.labels[i].unread));
  1683.      this.logItem("  - Folder found (name: " + aData.labels[i].name + " and unread emails: " + aData.labels[i].unread + ")");
  1684.     }
  1685.   }
  1686.  
  1687.   // quota
  1688.   user.space_used_mb = aData.quota.spaceused;
  1689.   user.total_mb = aData.quota.totalmb;
  1690.   user.space_used_percent = aData.quota.spaceusedpercent;
  1691.  
  1692.   // new/unread mail check
  1693.   this.logItem("  -inboxUnread: " +  aData.inboxunread + ", unreadEmails: " + user.unreadEmails + ", inboxNew: "+user.inboxNew+", totalunread: " + totalUnread);
  1694.  
  1695.   var showInboxOnly = this.getPrefBranch().getBoolPref("gm-notifier.ui.counter.showInbox");
  1696.   var hasNewMail = (totalUnread > user.unreadEmails);
  1697.  
  1698.   if (!hasNewMail && showInboxOnly) {
  1699.     hasNewMail = (user.inboxNew > 0);
  1700.   }
  1701.  
  1702.   if ((user.unreadEmails != null) && hasNewMail) {
  1703.     this.logItem("  New Unread Mail Found!");
  1704.     // new email
  1705.     user.newEmails = totalUnread - user.unreadEmails;
  1706.     user.unreadEmails = totalUnread;
  1707.  
  1708.     if (showInboxOnly && (user.inboxNew == 0)) {
  1709.       // show inbox only, but new mail wasn't in inbox
  1710.       this.pushStateChange(aUsername, nsINotifierProgressListener.NO_NEW_MAIL);
  1711.       //this.setNewMailMode(aUsername, false);
  1712.     } else {
  1713.       this.pushStateChange(aUsername, nsINotifierProgressListener.NEW_MAIL);
  1714.       this.setNewMailMode(aUsername, true);
  1715.       var count = this.getNewCount(aUsername);
  1716.       this.newMailNotification(aUsername, count);
  1717.       this.newMailCount = count;
  1718.     }
  1719.   } else if (user.unreadEmails == null && totalUnread > 0) {
  1720.     // first time
  1721.     this.logItem("  New Mail Found!");
  1722.     user.newEmails = totalUnread;
  1723.     user.unreadEmails = totalUnread;
  1724.  
  1725.     if (showInboxOnly && (user.inboxNew == 0)) {
  1726.       // show inbox only, but new mail wasn't in inbox
  1727.       this.pushStateChange(aUsername, nsINotifierProgressListener.NO_NEW_MAIL);
  1728.     } else {
  1729.       this.pushStateChange(aUsername, nsINotifierProgressListener.NEW_MAIL);
  1730.       this.setNewMailMode(aUsername, true);
  1731.       this.logItem("  - amount of new mail is " + user.newEmails);
  1732.       var count = this.getDisplayCount(aUsername);
  1733.       this.logItem("  - mail notification about to be set, new mail count is " + count);
  1734.       this.newMailNotification(aUsername, count);
  1735.       this.newMailCount = count;
  1736.     }
  1737.   } else {
  1738.     // check if the count decreased
  1739.     var decreased = false;
  1740.  
  1741.     if (totalUnread < user.unreadEmails) {
  1742.       decreased = true;
  1743.     }
  1744.  
  1745.     user.unreadEmails = totalUnread;
  1746.     this.logItem("  No New Unread Mail Found!");
  1747.     this.pushStateChange(aUsername, nsINotifierProgressListener.NO_NEW_MAIL);
  1748.  
  1749.     // only set mode to false if the count decreased. So if the user hasn't
  1750.     // checked the mail and we had new mail before, we stay in the new mail
  1751.     // mode.
  1752.     if (decreased) {
  1753.       user.newEmails = 0;
  1754.       this.setNewMailMode(aUsername, false);
  1755.     } else if (this.getNewMailMode(aUsername) &&
  1756.                this.getPrefBranch().getBoolPref("gm-notifier.notification.repeat")) {
  1757.       this.logItem("  - mail notification about to be set again, new mail count is " + this.newMailCount);
  1758.       this.newMailNotification(aUsername, this.newMailCount);
  1759.     } else {
  1760.       user.newEmails = 0;
  1761.     }
  1762.   }
  1763. }
  1764.  
  1765. nsNotifierService.prototype.accountCheckSuccess = function(aUsername) {
  1766.   if (!this.multiuser) {
  1767.     // if we are in single user mode, set the user to be the default
  1768.     var defaultUser = this.getPrefBranch().getCharPref("gm-notifier.users.default");
  1769.  
  1770.     if (defaultUser != aUsername) {
  1771.       this.getPrefBranch().setCharPref("gm-notifier.users.default", aUsername);
  1772.     }
  1773.   }
  1774.  
  1775.   // if we aren't logged in, we are now and tell the world
  1776.   if (!this.loggedIn) {
  1777.     // update the pref
  1778.     this.getPrefBranch().setBoolPref("gm-notifier.loggedin", true);
  1779.  
  1780.     this.loggedIn = true;
  1781.     this.pushStateChange(null, nsINotifierProgressListener.NOTIFIER_LOGGED_IN);
  1782.   }
  1783.  
  1784.   // success!
  1785.   this.accountCheckResult(aUsername, nsINotifierProgressListener.LOGIN_SUCCESS);
  1786. }
  1787.  
  1788. nsNotifierService.prototype.buildCookieString = function(aCookieObject, aURI) {
  1789.   var cookiestring = "";
  1790.  
  1791.   for (var cookie in aCookieObject) {
  1792.     if (aCookieObject[cookie]) {
  1793.       // make sure the cookie fits the domain
  1794.       //this.logItem("c: "+cookie + " " + aURI.host + " - " + aCookieObject[cookie].domain);
  1795.       if (aURI.host == aCookieObject[cookie].domain || aURI.host.indexOf(aCookieObject[cookie].domain) >= 0) {
  1796.         if (aCookieObject[cookie].value) {
  1797.           cookiestring += aCookieObject[cookie].value + "; ";
  1798.         }
  1799.       }
  1800.     }
  1801.   }
  1802.  
  1803.   //this.logItem("c2: "+cookiestring);
  1804.  
  1805.   /*if (aCookieObject.GX) {
  1806.     cookie += aCookieObject.GX + " ";
  1807.   }
  1808.  
  1809.   if (aCookieObject.SID) {
  1810.     cookie += aCookieObject.SID + " ";
  1811.   }
  1812.  
  1813.   if (aCookieObject.LSID) {
  1814.     cookie += aCookieObject.LSID + " ";
  1815.   }
  1816.  
  1817.   if (aCookieObject.HID) {
  1818.     cookie += aCookieObject.HID + " ";
  1819.   }
  1820.  
  1821.   if (aCookieObject.GXAS) {
  1822.     cookie += aCookieObject.GXAS + " ";
  1823.   }
  1824.  
  1825.   if (aCookieObject.GXAS_SEC) {
  1826.     cookie += aCookieObject.GXAS_SEC + " ";
  1827.   }
  1828.  
  1829.   if (aCookieObject.S) {
  1830.     cookie += aCookieObject.S + " ";
  1831.   }*/
  1832.   return cookiestring;
  1833. }
  1834.  
  1835. nsNotifierService.prototype.clearCookieObject = function(aUsername) {
  1836.   for (var cookie in this.userList[aUsername].cookieObject) {
  1837.     delete this.userList[aUsername].cookieObject[cookie];
  1838.   }
  1839.  
  1840.   /*this.userList[aUsername].cookieObject.GX = "";
  1841.   this.userList[aUsername].cookieObject.SID = "";
  1842.   this.userList[aUsername].cookieObject.LSID = "";
  1843.   this.userList[aUsername].cookieObject.GXAS_SEC = "";
  1844.   this.userList[aUsername].cookieObject.GXAS = "";
  1845.   this.userList[aUsername].cookieObject.HID = "";
  1846.   this.userList[aUsername].cookieObject.S = "";*/
  1847.   delete this.userList[aUsername].rememberme;
  1848.   delete this.userList[aUsername].remembermeExpires;
  1849. }
  1850.  
  1851. nsNotifierService.prototype.loadCookieData = function(aUsername) {
  1852.   // We should follow the user's choice if to remember the login info beyond
  1853.   // the current session.
  1854.    this.logItem("  -- loading cookie data for " + aUsername);
  1855.   var rememberme = this.userList[aUsername].rememberme;
  1856.   var remembermeExpires = this.userList[aUsername].remembermeExpires;
  1857.  
  1858.   var isHostedDomain = this.isHostedDomain(aUsername);
  1859.  
  1860.   if (rememberme == undefined) {
  1861.     var cookieMgr = Components.classes[kCOOKIESERVICE_CONTRACTID]
  1862.                               .getService(Components.interfaces.nsICookieManager);
  1863.  
  1864.     var e = cookieMgr.enumerator;
  1865.     var cookie, done = false;
  1866.     while (!done && e.hasMoreElements()) {
  1867.       cookie = e.getNext().QueryInterface(Components.interfaces.nsICookie);
  1868.  
  1869.       if (cookie.host == ".google.com" || cookie.host == "google.com") {
  1870.         if (!isHostedDomain && cookie.name == "rememberme") {
  1871.           done = true;
  1872.           rememberme = (cookie.value == "true");
  1873.           if (rememberme) {
  1874.             remembermeExpires = cookie.expires;
  1875.           } else {
  1876.             remembermeExpires = null;
  1877.           }
  1878.           this.logItem("  -- 1 rememberme cookie value is " + cookie.value);
  1879.         } else if (!isHostedDomain && cookie.name == "LSID" &&
  1880.                    (rememberme == undefined)) {
  1881.           // no remember me, check expire date
  1882.           var expireDate = new Date(1000 * cookie.expires);
  1883.           var currentDate = new Date();
  1884.  
  1885.           this.logItem("  "+expireDate.getFullYear() + " vs "  + currentDate.getFullYear());
  1886.  
  1887.           if ((expireDate.getFullYear() - 2) > currentDate.getFullYear()) {
  1888.             // expires in more than 2 years
  1889.             rememberme = true;
  1890.             remembermeExpires = cookie.expires;
  1891.  
  1892.             this.logItem("  -- 2 rememberme cookie value is " + cookie.value);
  1893.           }
  1894.         } else if (isHostedDomain && cookie.name == "HID") {
  1895.           if (cookie.path != "/hosted/" + this.getHostedDomain(aUsername) + "/") {
  1896.             continue;
  1897.           }
  1898.  
  1899.           // we are done
  1900.           done = true;
  1901.  
  1902.           // no remember me, check expire date
  1903.           var expireDate = new Date(1000 * cookie.expires);
  1904.           var currentDate = new Date();
  1905.  
  1906.           this.logItem("  "+expireDate.getFullYear() + " vs "  + currentDate.getFullYear());
  1907.  
  1908.           if ((expireDate.getFullYear() - 2) > currentDate.getFullYear()) {
  1909.             // expires in more than 2 years
  1910.             rememberme = true;
  1911.             remembermeExpires = cookie.expires;
  1912.  
  1913.             this.logItem("  -- 3 rememberme cookie value is " + cookie.value);
  1914.           }
  1915.         }
  1916.       }
  1917.     }
  1918.  
  1919.     if (done) {
  1920.       // store the rememberme
  1921.       this.userList[aUsername].rememberme = rememberme;
  1922.       this.userList[aUsername].remembermeExpires = remembermeExpires;
  1923.     }
  1924.   }
  1925.  
  1926.   this.logItem("  remembermeExpires: "+this.userList[aUsername].remembermeExpires);
  1927.  
  1928.   var cookieService = Components.classes["@mozilla.org/cookieService;1"]
  1929.                                 .getService(Components.interfaces.nsICookieService);
  1930.   var ioService = Components.classes["@mozilla.org/network/io-service;1"]
  1931.                             .getService(Components.interfaces.nsIIOService);
  1932.  
  1933.   function formatExpiresString(aExpires) {
  1934.     if (!aExpires) {
  1935.       return "0";
  1936.     }
  1937.  
  1938.     // stolen from the cookie prefs in Mozilla :)
  1939.     var sdf = Components.classes["@mozilla.org/intl/scriptabledateformat;1"]
  1940.                         .getService(Components.interfaces.nsIScriptableDateFormat);
  1941.     var date = new Date(1000 * aExpires);
  1942.     return sdf.FormatDateTime("", sdf.dateFormatLong,
  1943.                                   sdf.timeFormatSeconds,
  1944.                                   date.getFullYear(),
  1945.                                   date.getMonth() + 1,
  1946.                                   date.getDate(),
  1947.                                   date.getHours(),
  1948.                                   date.getMinutes(),
  1949.                                   date.getSeconds());
  1950.   }
  1951.  
  1952.   var expires = "";
  1953.   if (typeof(this.userList[aUsername].remembermeExpires) == "string") {
  1954.     expires = "Expires=" + formatExpiresString(this.userList[aUsername].remembermeExpires);
  1955.   }
  1956.  
  1957.   this.clearCookieData();
  1958.  
  1959.   // XXX: why not just load all cookies from the cookie object
  1960.   if (!isHostedDomain) {
  1961.     var gx = this.userList[aUsername].cookieObject.GX.value + ";";
  1962.  
  1963.     if (!!expires) {
  1964.       gx += expires+";";
  1965.     }
  1966.     gx += "Path=/mail";
  1967.  
  1968.     //this.loadCookieIntoApp(this.userList[aUsername].cookieObject.GX);
  1969.     //cookieService.setCookieString(ioService.newURI("http://mail.google.com", null, null), null, gx, null);
  1970.  
  1971.     //this.loadCookieIntoApp(this.userList[aUsername].cookieObject.SID);
  1972.     //cookieService.setCookieString(ioService.newURI("http://.google.com", null, null), null, this.userList[aUsername].cookieObject.SID.value + ";" + expires, null);
  1973.  
  1974.     //this.loadCookieIntoApp(this.userList[aUsername].cookieObject.GXSP);
  1975.  
  1976.     for (var x in this.userList[aUsername].cookieObject) {
  1977.       this.loadCookieIntoApp(this.userList[aUsername].cookieObject[x]);
  1978.     }
  1979.   } else {
  1980.     if (this.userList[aUsername].cookieObject.GXAS_SEC) {
  1981.       this.loadCookieIntoApp(this.userList[aUsername].cookieObject.GXAS_SEC);
  1982.       //cookieService.setCookieString(ioService.newURI("http://mail.google.com", null, null), null, this.userList[aUsername].cookieObject.GXAS_SEC.value + ";" + expires+";Path=/a", null);
  1983.     }
  1984.  
  1985.     this.loadCookieIntoApp(this.userList[aUsername].cookieObject.GXSP);
  1986.  
  1987.     if (this.userList[aUsername].cookieObject.GXAS) {
  1988.       this.loadCookieIntoApp(this.userList[aUsername].cookieObject.GXAS);
  1989.       //cookieService.setCookieString(ioService.newURI("http://mail.google.com", null, null), null, this.userList[aUsername].cookieObject.GXAS.value + ";" + expires+";Path=/a", null);
  1990.     }
  1991.  
  1992.     if (this.userList[aUsername].cookieObject.HID) {
  1993.       this.loadCookieIntoApp(this.userList[aUsername].cookieObject.HID);
  1994.       //cookieService.setCookieString(ioService.newURI("https://.www.google.com", null, null), null, this.userList[aUsername].cookieObject.HID.value + ";" + expires+";Path=/a/"+this.getHostedDomain(aUsername)+"/", null);
  1995.     }
  1996.  
  1997.     if (this.userList[aUsername].isGmail20) {
  1998.       this.loadCookieIntoApp(this.userList[aUsername].cookieObject.S);
  1999.       //cookieService.setCookieString(ioService.newURI("http://mail.google.com", null, null), null, this.userList[aUsername].cookieObject.S.value + ";" + expires+";Path=/a/"+this.getHostedDomain(aUsername), null);
  2000.     }
  2001.   }
  2002. }
  2003.  
  2004. nsNotifierService.prototype.clearCookieData = function() {
  2005.   this.logItem("  -- clearing cookie data!!");
  2006.  
  2007.   var cookieMgr = Components.classes[kCOOKIESERVICE_CONTRACTID]
  2008.                             .getService(Components.interfaces.nsICookieManager);
  2009.  
  2010.   var e = cookieMgr.enumerator;
  2011.  
  2012.   while (e.hasMoreElements()) {
  2013.     var cookie = e.getNext().QueryInterface(Components.interfaces.nsICookie);
  2014.           //this.logItem(cookie.host+ " , "+cookie.name+ " , " +cookie.path);
  2015.  
  2016.     if (cookie.host == "mail.google.com" || cookie.host == ".mail.google.com") {
  2017.       //this.logItem(cookie.host+ " , "+cookie.name+ " , " +cookie.path);
  2018.  
  2019.      cookieMgr.remove(cookie.host, cookie.name, cookie.path, false);
  2020.     }
  2021.   }
  2022.  
  2023.  // cookieMgr.remove("mail.google.com", "GX", "/mail", false);
  2024.   //cookieMgr.remove(".google.com", "SID", "/", false);
  2025.   //cookieMgr.remove("mail.google.com", "GXAS", "/hosted", false);
  2026.   //cookieMgr.remove("mail.google.com", "GXAS", "/a/", false);
  2027.   //cookieMgr.remove("mail.google.com", "GXSP", "", false);
  2028.   //cookieMgr.remove("mail.google.com", "GXAS_SEC", "/hosted", false);
  2029.   //cookieMgr.remove("mail.google.com", "S", "/mail", false);
  2030.  
  2031.  
  2032.   var defaultUser = this.getPrefBranch().getCharPref("gm-notifier.users.default");
  2033.  
  2034.   cookieMgr.remove(".google.com", "HID", "/hosted"+this.getHostedDomain(defaultUser)+"/", false);
  2035. }
  2036.  
  2037. nsNotifierService.prototype.isHostedDomain = function(aUsername) {
  2038.   var isHosted = false;
  2039.  
  2040.   if (aUsername.indexOf("@") > 0) {
  2041.     var domain = this.getHostedDomain(aUsername);
  2042.  
  2043.     // don't treat gmail.com/googlemail.com has hosted domains
  2044.     if (domain == "gmail.com" || domain == "googlemail.com") {
  2045.       isHosted = false;
  2046.     } else {
  2047.       isHosted = true;
  2048.     }
  2049.   }
  2050.  
  2051.   return isHosted;
  2052. }
  2053.  
  2054. nsNotifierService.prototype.getHostedDomain = function(aUsername) {
  2055.   var index = aUsername.indexOf("@");
  2056.  
  2057.   if (index >= 0) {
  2058.     return aUsername.substring(index+1, aUsername.length).toLowerCase();
  2059.   } else {
  2060.     return null;
  2061.   }
  2062. }
  2063.  
  2064. /* json code */
  2065. /* ***** BEGIN LICENSE BLOCK *****
  2066.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  2067.  *
  2068.  * The contents of this file are subject to the Mozilla Public License Version
  2069.  * 1.1 (the "License"); you may not use this file except in compliance with
  2070.  * the License. You may obtain a copy of the License at
  2071.  * http://www.mozilla.org/MPL/
  2072.  *
  2073.  * Software distributed under the License is distributed on an "AS IS" basis,
  2074.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  2075.  * for the specific language governing rights and limitations under the
  2076.  * License.
  2077.  *
  2078.  * The Original Code is Mozilla code.
  2079.  *
  2080.  * The Initial Developer of the Original Code is
  2081.  * Simon Bⁿnzli <zeniko@gmail.com>
  2082.  * Portions created by the Initial Developer are Copyright (C) 2006-2007
  2083.  * the Initial Developer. All Rights Reserved.
  2084.  *
  2085.  * Contributor(s):
  2086.  *
  2087.  * Alternatively, the contents of this file may be used under the terms of
  2088.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  2089.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  2090.  * in which case the provisions of the GPL or the LGPL are applicable instead
  2091.  * of those above. If you wish to allow use of your version of this file only
  2092.  * under the terms of either the GPL or the LGPL, and not to allow others to
  2093.  * use your version of this file under the terms of the MPL, indicate your
  2094.  * decision by deleting the provisions above and replace them with the notice
  2095.  * and other provisions required by the GPL or the LGPL. If you do not delete
  2096.  * the provisions above, a recipient may use your version of this file under
  2097.  * the terms of any one of the MPL, the GPL or the LGPL.
  2098.  *
  2099.  * ***** END LICENSE BLOCK ***** */
  2100.  
  2101. /**
  2102.  * Utilities for JavaScript code to handle JSON content.
  2103.  * See http://www.json.org/ for comprehensive information about JSON.
  2104.  *
  2105.  * Import this module through
  2106.  *
  2107.  * Components.utils.import("resource://gre/modules/JSON.jsm");
  2108.  *
  2109.  * Usage:
  2110.  *
  2111.  * var newJSONString = JSON.toString( GIVEN_JAVASCRIPT_OBJECT );
  2112.  * var newJavaScriptObject = JSON.fromString( GIVEN_JSON_STRING );
  2113.  *
  2114.  * Note: For your own safety, Objects/Arrays returned by
  2115.  *       JSON.fromString aren't instanceof Object/Array.
  2116.  */
  2117.  
  2118.  
  2119. var JSON = {
  2120.   /**
  2121.    * Converts a JavaScript object into a JSON string.
  2122.    *
  2123.    * @param aJSObject is the object to be converted
  2124.    * @param aKeysToDrop is an optional array of keys which will be
  2125.    *                    ignored in all objects during the serialization
  2126.    * @return the object's JSON representation
  2127.    *
  2128.    * Note: aJSObject MUST not contain cyclic references.
  2129.    */
  2130.   toString: function JSON_toString(aJSObject, aKeysToDrop) {
  2131.     // we use a single string builder for efficiency reasons
  2132.     var pieces = [];
  2133.     
  2134.     // this recursive function walks through all objects and appends their
  2135.     // JSON representation (in one or several pieces) to the string builder
  2136.     function append_piece(aObj) {
  2137.       if (typeof aObj == "string") {
  2138.         aObj = aObj.replace(/[\\"\x00-\x1F\u0080-\uFFFF]/g, function($0) {
  2139.           // use the special escape notation if one exists, otherwise
  2140.           // produce a general unicode escape sequence
  2141.           switch ($0) {
  2142.           case "\b": return "\\b";
  2143.           case "\t": return "\\t";
  2144.           case "\n": return "\\n";
  2145.           case "\f": return "\\f";
  2146.           case "\r": return "\\r";
  2147.           case '"':  return '\\"';
  2148.           case "\\": return "\\\\";
  2149.           }
  2150.           return "\\u" + ("0000" + $0.charCodeAt(0).toString(16)).slice(-4);
  2151.         });
  2152.         pieces.push('"' + aObj + '"')
  2153.       }
  2154.       else if (typeof aObj == "boolean") {
  2155.         pieces.push(aObj ? "true" : "false");
  2156.       }
  2157.       else if (typeof aObj == "number" && isFinite(aObj)) {
  2158.         // there is no representation for infinite numbers or for NaN!
  2159.         pieces.push(aObj.toString());
  2160.       }
  2161.       else if (aObj === null) {
  2162.         pieces.push("null");
  2163.       }
  2164.       // if it looks like an array, treat it as such - this is required
  2165.       // for all arrays from either outside this module or a sandbox
  2166.       else if (aObj instanceof Array ||
  2167.                typeof aObj == "object" && "length" in aObj &&
  2168.                (aObj.length === 0 || aObj[aObj.length - 1] !== undefined)) {
  2169.         pieces.push("[");
  2170.         for (var i = 0; i < aObj.length; i++) {
  2171.           arguments.callee(aObj[i]);
  2172.           pieces.push(",");
  2173.         }
  2174.         if (aObj.length > 0)
  2175.           pieces.pop(); // drop the trailing colon
  2176.         pieces.push("]");
  2177.       }
  2178.       else if (typeof aObj == "object") {
  2179.         pieces.push("{");
  2180.         for (var key in aObj) {
  2181.           // allow callers to pass objects containing private data which
  2182.           // they don't want the JSON string to contain (so they don't
  2183.           // have to manually pre-process the object)
  2184.           if (aKeysToDrop && aKeysToDrop.indexOf(key) != -1)
  2185.             continue;
  2186.           
  2187.           arguments.callee(key.toString());
  2188.           pieces.push(":");
  2189.           arguments.callee(aObj[key]);
  2190.           pieces.push(",");
  2191.         }
  2192.         if (pieces[pieces.length - 1] == ",")
  2193.           pieces.pop(); // drop the trailing colon
  2194.         pieces.push("}");
  2195.       }
  2196.       else {
  2197.         throw new TypeError("No JSON representation for this object!");
  2198.       }
  2199.     }
  2200.     append_piece(aJSObject);
  2201.     
  2202.     return pieces.join("");
  2203.   },
  2204.  
  2205.   /**
  2206.    * Converts a JSON string into a JavaScript object.
  2207.    *
  2208.    * @param aJSONString is the string to be converted
  2209.    * @return a JavaScript object for the given JSON representation
  2210.    */
  2211.   fromString: function JSON_fromString(aJSONString) {
  2212.     if (!this.isMostlyHarmless(aJSONString))
  2213.       throw new SyntaxError("No valid JSON string!");
  2214.     
  2215.     var s = new Components.utils.Sandbox("about:blank");
  2216.     return Components.utils.evalInSandbox("(" + aJSONString + ")", s);
  2217.   },
  2218.  
  2219.   /**
  2220.    * Checks whether the given string contains potentially harmful
  2221.    * content which might be executed during its evaluation
  2222.    * (no parser, thus not 100% safe! Best to use a Sandbox for evaluation)
  2223.    *
  2224.    * @param aString is the string to be tested
  2225.    * @return a boolean
  2226.    */
  2227.   isMostlyHarmless: function JSON_isMostlyHarmless(aString) {
  2228.     const maybeHarmful = /[^,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t]/;
  2229.     const jsonStrings = /"(\\.|[^"\\\n\r])*"/g;
  2230.     
  2231.     return !maybeHarmful.test(aString.replace(jsonStrings, ""));
  2232.   }
  2233. };
  2234.  
  2235.  
  2236.  
  2237. // timing stuff
  2238. nsNotifierService.prototype.setTimer = function() {
  2239.   if (this.updateTimer) {
  2240.     this.updateTimer.cancel();
  2241.   } else {
  2242.     this.updateTimer = Components.classes[kTIMER_CONTRACTID].createInstance(nsITimer);
  2243.   }
  2244.  
  2245.   this.logItem("Starting at : " + new Date());
  2246.   try {
  2247.     this.updateTimer.initWithCallback(this, this.timeOut, nsITimer.TYPE_ONE_SHOT);
  2248.   } catch (e) {
  2249.     this.logItem(e);
  2250.   }
  2251. }
  2252.  
  2253. // nsITimer
  2254. nsNotifierService.prototype.notify = function(aTimer) {
  2255.   this.logItem("  *************** notify called");
  2256.   this.logItem("End: " + new Date());
  2257.   this.checkAccounts();
  2258. }
  2259.  
  2260. nsNotifierService.prototype.pushStateChange = function(aUsername, aState) {
  2261.   for (var run = 0; run < this.listeners.length; run++) {
  2262.     // can be null if a listener was removed
  2263.     if (this.listeners[run]) {
  2264.       this.listeners[run].onStateChange(aUsername, aState);
  2265.     }
  2266.   }
  2267. }
  2268.  
  2269. nsNotifierService.prototype.observer = function(aCallbackFunc, aUsername, aThis) {
  2270.   var myThis = aThis;
  2271.  
  2272.   return ({
  2273.     data : "",
  2274.  
  2275.     onStartRequest : function (aRequest, aContext) {
  2276.       this.data = "";
  2277.     },
  2278.  
  2279.     onDataAvailable : function (aRequest, aContext, aStream, aSourceOffset, aLength){
  2280.       var scriptableInputStream = 
  2281.         Components.classes["@mozilla.org/scriptableinputstream;1"]
  2282.                   .createInstance(Components.interfaces.nsIScriptableInputStream);
  2283.       scriptableInputStream.init(aStream);
  2284.  
  2285.       this.data += scriptableInputStream.read(aLength);
  2286.     },
  2287.  
  2288.     onStopRequest : function (aRequest, aContext, aStatus) {
  2289.       // XXX: proxy issue: aStatus is an error from http://lxr.mozilla.org/seamonkey/source/netwerk/base/public/nsNetError.h#172
  2290.       aCallbackFunc(this.data, aRequest, aUsername);
  2291.     },
  2292.  
  2293.     onChannelRedirect : function (aOldChannel, aNewChannel, aFlags) {
  2294.       //dump("\nredirect!");
  2295.       if (aOldChannel == myThis.channel)  {
  2296.         //myThis.logItem("   - redirect to: "+aNewChannel.URI.spec);
  2297.         myThis.channel = aNewChannel;
  2298.       }
  2299.     },
  2300.  
  2301.     // nsIInterfaceRequestor
  2302.     getInterface: function (aIID) {
  2303.       try {
  2304.         return this.QueryInterface(aIID);
  2305.       } catch (e) {
  2306.         throw Components.results.NS_NOINTERFACE;
  2307.       }
  2308.     },
  2309.  
  2310.     // nsIProgressEventSink (to shut up annoying debug exceptions
  2311.     onProgress : function (aRequest, aContext, aProgress, aProgressMax) { },
  2312.     onStatus : function (aRequest, aContext, aStatus, aStatusArg) { },
  2313.  
  2314.     // nsIHttpEventSink (to shut up annoying debug exceptions
  2315.     onRedirect : function (aOldChannel, aNewChannel) { },
  2316.  
  2317.     QueryInterface : function(aIID) {
  2318.       if (aIID.equals(nsISupports) ||
  2319.           aIID.equals(Components.interfaces.nsIDocShell) ||
  2320.           aIID.equals(Components.interfaces.nsIInterfaceRequestor) ||
  2321.           aIID.equals(Components.interfaces.nsIChannelEventSink) || 
  2322.           aIID.equals(Components.interfaces.nsISupportsWeakReference) ||
  2323.           aIID.equals(Components.interfaces.nsIProgressEventSink) ||
  2324.           aIID.equals(Components.interfaces.nsIPrompt) ||
  2325.           aIID.equals(Components.interfaces.nsIHttpEventSink) ||
  2326.           aIID.equals(Components.interfaces.nsIDocShellTreeItem) ||
  2327.           aIID.equals(Components.interfaces.nsIStreamListener))
  2328.         return this;
  2329.  
  2330.       throw Components.results.NS_NOINTERFACE;
  2331.     }
  2332.   }
  2333.   );
  2334. }
  2335.  
  2336. /*
  2337.   New mail notification
  2338.  */
  2339. nsNotifierService.prototype.newMailNotification = function(aUsername, aNewNum) {
  2340.   if (aNewNum < 1) {
  2341.     return;
  2342.   }
  2343.  
  2344.   this.logItem("  New Mail Notification Init:");
  2345.  
  2346.   var isNotificationEnabled = this.getPrefBranch().getBoolPref("gm-notifier.ui.notification.enabled");
  2347.   this.logItem("    Is System Notification Enabled by user: " + isNotificationEnabled);
  2348.  
  2349.   if (isNotificationEnabled) {
  2350.     var msg = this.getFormattedString("NotificationMsg", [aNewNum]);
  2351.     var title = this.getFormattedString("NotificationMsgTitle", [aUsername]);
  2352.  
  2353.     try {
  2354.       if ("@mozilla.org/alerts-service;1" in Components.classes) {
  2355.         var alertService = Components.classes["@mozilla.org/alerts-service;1"]
  2356.                                      .getService(Components.interfaces.nsIAlertsService);
  2357.         if (alertService) {
  2358.           alertService.showAlertNotification("chrome://gm-notifier/content/gm-logo.png",
  2359.                                            title, msg, true, aUsername, this);
  2360.           this.logItem("    alertsService success.");
  2361.         } else {
  2362.           this.logItem("    alertsService failure: could not getService nsIAlertsService");
  2363.         }
  2364.       } else if ("@growl.info/notifications;1" in Components.classes) {
  2365.         // try growl
  2366.         var growl = Components.classes["@growl.info/notifications;1"].getService(Components.interfaces.grINotifications);
  2367.  
  2368.         if (growl) {
  2369.           this.logItem("    using growl service");
  2370.           growl.sendNotification(aUsername, "chrome://gm-notifier/content/gm-logo.png", title, msg, this);
  2371.         } else {
  2372.           this.logItem("    growl service failed");
  2373.         }
  2374.       }
  2375.     } catch(e) {
  2376.        this.logItem("    alertsService failure: " + e);
  2377.     }
  2378.   }
  2379.  
  2380.   // sound notifications
  2381.   var isSoundNotificationsEnabled = this.getPrefBranch().getBoolPref("gm-notifier.ui.soundnotification.enabled");
  2382.   this.logItem("  Is Sound Notification Enabled by user: " + isSoundNotificationsEnabled);
  2383.  
  2384.   if (isSoundNotificationsEnabled) {
  2385.     var soundUrl = this.getPrefBranch().getCharPref("gm-notifier.ui.soundnotification.uri");
  2386.  
  2387.     try {
  2388.       var sound = Components.classes["@mozilla.org/sound;1"]
  2389.                             .createInstance(Components.interfaces.nsISound);
  2390.       sound.init();
  2391.  
  2392.       var shortname = soundUrl.substr(0, 7);
  2393.  
  2394.       if (shortname == "http://" || shortname == "https:/") {
  2395.         var url = Components.classes["@mozilla.org/network/standard-url;1"]
  2396.                             .createInstance(Components.interfaces.nsIURL);
  2397.         url.spec = soundUrl;
  2398.         sound.play(url);
  2399.       } else {
  2400.         var localFile = Components.classes["@mozilla.org/file/local;1"]
  2401.                            .createInstance(Components.interfaces.nsILocalFile);
  2402.         localFile.initWithPath(soundUrl);
  2403.  
  2404.         var ios = Components.classes["@mozilla.org/network/io-service;1"]
  2405.                             .getService(Components.interfaces.nsIIOService);
  2406.         sound.play(ios.newFileURI(localFile));
  2407.       }
  2408.     } catch (e) {
  2409.       this.logItem("  Sound playing failed with: "+ e);
  2410.     }
  2411.   }
  2412. }
  2413.  
  2414. // nsIObserver for alert service - aData will be the username
  2415. nsNotifierService.prototype.observe = function (aSubject, aTopic, aData){
  2416.   switch (aTopic) {
  2417.     case "alertfinished":
  2418.       break;
  2419.  
  2420.     case "alertclickcallback":
  2421.       this.showNotification(aData);
  2422.       break;
  2423.  
  2424.     case "http-on-modify-request":
  2425.       // happens right before we send out the request, so that we can overwrite
  2426.       // the cookie data with ours.  Make sure it is our connection first.
  2427.       if (aSubject == this.channel) {
  2428.         var httpChannel = aSubject.QueryInterface(nsIHttpChannel);
  2429.  
  2430.         // overwrite the cookie we are going to be sending with ours.
  2431.         var username = this.userQueue[this.currentUserQueue];
  2432.         // create cookie string
  2433.         var cookieobject = this.userList[username].cookieObject;
  2434.         var cookie = this.buildCookieString(cookieobject, httpChannel.URI);
  2435.  
  2436.         this.logItem("    -- cookie string is: " + cookie);
  2437.  
  2438.         httpChannel.setRequestHeader("Cookie", cookie, false);
  2439.  
  2440.         //dump("\n Request: "+ httpChannel.URI.spec+ "\n  Cookie: "+ cookie +"\n");
  2441.       }
  2442.       break;
  2443.  
  2444.     case "http-on-examine-response":
  2445.       // happens right before we process the response, so that we can store
  2446.       // and empty the Set-Cookie directive, so that the user's cookies aren't
  2447.       // overwritten by our connections.  Make sure it is our connection first.
  2448.       if (aSubject == this.channel) {
  2449.         var httpChannel = aSubject.QueryInterface(nsIHttpChannel);
  2450.         var cookie = "";
  2451.  
  2452.         try {
  2453.           cookie = httpChannel.getResponseHeader("Set-Cookie");
  2454.         } catch(e) {}
  2455.  
  2456.         //dump("\n Response: " + httpChannel.URI.spec+ "\n  Cookie: " + cookie +"\n");
  2457.  
  2458.         var username = this.userQueue[this.currentUserQueue];
  2459.  
  2460.         // parse the cookie.  Yes, we have a mini-parser here to make sure we get
  2461.         // all the cookies we need and dump the unused ones (including the
  2462.         // commands to expire certain cookies.
  2463.  
  2464.         this.logItem("    -- cookie response is: " + cookie);
  2465.         var split = cookie.split("\n");
  2466.         var newcookie = "";
  2467.         var usercookieobject = this.userList[username].cookieObject;
  2468.         var expired = false;
  2469.  
  2470.         function getCookieString(aString) {
  2471.           var end = aString.indexOf(";");
  2472.           return aString.substr(0, end);
  2473.         }
  2474.  
  2475.         function getCookieDomain(aString) {
  2476.           var domain = aString.match(/\Domain=([a-zA-Z0-9.]*);/);
  2477.           return domain ? domain[1] : httpChannel.URI.host;
  2478.         }
  2479.  
  2480.         function getCookiePath(aString) {
  2481.           var path = aString.match(/\Path=([a-zA-Z0-9.\/]*);/);
  2482.           return path ? path[1] : null;
  2483.         }
  2484.  
  2485.         for (var i = 0; i < split.length; i++) {
  2486.           if (split[i].indexOf("=EXPIRED") > 0) {
  2487.             expired = true;
  2488.           } else {
  2489.             expired = false;
  2490.           }
  2491.  
  2492.           var index = split[i].indexOf("=");
  2493.           var cookiename = split[i].substr(0, index);
  2494.  
  2495.           if (!cookiename) {
  2496.             continue;
  2497.           }
  2498.  
  2499.           if (expired) {
  2500.             //dump("\n -- killing "+cookiename);
  2501.             delete usercookieobject[cookiename];
  2502.           } else {
  2503.             usercookieobject[cookiename] = {name: cookiename, value: getCookieString(split[i]), domain: getCookieDomain(split[i]), path: getCookiePath(split[i])};
  2504.             //usercookieobject[cookiename] = {value: getCookieString(split[i]), domain: getCookieDomain(split[i]), path: getCookiePath(split[i])};
  2505.             //dump("\n -- setting "+cookiename +" domain: "+usercookieobject[cookiename].domain+" path:"+usercookieobject[cookiename].path);
  2506.           }
  2507.  
  2508.           //dump(split[i]);
  2509.           // XXX: gmail specific stuff here
  2510.           /*if (split[i].indexOf("GX=") > -1) {
  2511.             if (expired) {
  2512.               usercookieobject.GX = "";
  2513.             } else {
  2514.               newcookie = split[i].match(/\GX=[a-zA-Z0-9_-]*;/);
  2515.               usercookieobject.GX = newcookie;
  2516.             }
  2517.           } else if (split[i].indexOf("LSID=") > -1) {
  2518.             if (expired) {
  2519.               usercookieobject.LSID = "";
  2520.             } else {
  2521.               newcookie = getCookieString(split[i]);
  2522.               usercookieobject.LSID = newcookie;
  2523.             }
  2524.           } else if (split[i].indexOf("SID=") > -1) {
  2525.             if (expired) {
  2526.               usercookieobject.SID = "";
  2527.             } else {
  2528.               newcookie = split[i].match(/\SID=[a-zA-Z0-9_-]*;/);
  2529.               usercookieobject.SID = newcookie;
  2530.             }
  2531.           } else if (split[i].indexOf("HID=") > -1) {
  2532.             if (expired) {
  2533.               // XXX: we need HID when you load hosted webmail, but why
  2534.               // is it being removed?
  2535.               //usercookieobject.HID = "";
  2536.             } else {
  2537.               newcookie = split[i].match(/\HID=[a-zA-Z0-9_-]*;/);
  2538.               usercookieobject.HID = newcookie;
  2539.             }
  2540.           } else if (split[i].indexOf("GXAS=") > -1) {
  2541.             if (expired) {
  2542.               usercookieobject.GXAS = "";
  2543.             } else {
  2544.               newcookie = split[i].match(/\GXAS=[a-zA-Z0-9_.=-]*;/);
  2545.               usercookieobject.GXAS = getCookieString(split[i]);
  2546.             }
  2547.           } else if (split[i].indexOf("GXAS_SEC=") > -1) {
  2548.             if (expired) {
  2549.               usercookieobject.GXAS_SEC = "";
  2550.             } else {
  2551.               newcookie = split[i].match(/\GXAS_SEC=[a-zA-Z0-9_.=-]*;/);
  2552.               usercookieobject.GXAS_SEC = getCookieString(split[i]);
  2553.             }
  2554.           } else if (split[i].indexOf("S=") == 0) {
  2555.             if (expired) {
  2556.               usercookieobject.S = "";
  2557.             } else {
  2558.               newcookie = getCookieString(split[i]);
  2559.               //dump("\n\nnew cookie: |"+newcookie+"|\n\n");
  2560.               usercookieobject.S = newcookie;
  2561.             }
  2562.           }*/
  2563.         }
  2564.  
  2565.         // make sure we don't store the Set-Cookie directive by making it empty
  2566.         httpChannel.setResponseHeader("Set-Cookie", "", false);
  2567.       }
  2568.       break;
  2569.   }
  2570. }
  2571.  
  2572. nsNotifierService.prototype.showNotification = function(aUsername) {
  2573.   // when the alert callback happens, we want to notify the listener that
  2574.   // initiated the server connection that the alert was clicked.
  2575.   // Simply pushing a state change to all listeners will result in the
  2576.   // infinite window open loop!
  2577.   this.logItem("Alert Clickback called for " + aUsername + ":");
  2578.   this.logItem("  Notification Window is: (" + this.notificationListenerID + ").");
  2579.  
  2580.   var run = 0;
  2581.   if (this.notificationListenerID) {
  2582.     var done = false;
  2583.     while (!done && (run < this.listeners.length)) {
  2584.       this.logItem("  Item " + run +  " has id (" + this.listeners[run].getID() + ")");
  2585.       if (this.listeners[run] && (this.listeners[run].getID() == this.notificationListenerID))
  2586.         done = true;
  2587.       else 
  2588.         run++;
  2589.     }
  2590.   } else {
  2591.     // fallback
  2592.     while ((this.listeners[run] == null) && (run < this.listeners.length))
  2593.       run++;
  2594.  
  2595.     this.logItem("  No notification window found, call listener #" + run);
  2596.   }
  2597.  
  2598.   if (this.listeners[run]) {
  2599.     this.listeners[run].onStateChange(aUsername, nsINotifierProgressListener.LOAD_MAIL);
  2600.   }
  2601. }
  2602.  
  2603. nsNotifierService.prototype.createFolder = function(aName, aUnreadMail) {
  2604.   return {
  2605.     name: aName,
  2606.     unreadMail: aUnreadMail
  2607.   }
  2608. }
  2609.  
  2610. /* Pref code */
  2611. nsNotifierService.prototype.getPrefBranch = function(){
  2612.   if (!this.prefBranch) {
  2613.     this.prefBranch = Components.classes['@mozilla.org/preferences-service;1'];
  2614.     this.prefBranch = this.prefBranch.getService();
  2615.     this.prefBranch = this.prefBranch.QueryInterface(Components.interfaces.nsIPrefBranch);
  2616.   }
  2617.  
  2618.   return this.prefBranch;
  2619. }
  2620.  
  2621. nsNotifierService.prototype.prefChanged = function(aPrefName) {
  2622.   switch (aPrefName) {
  2623.     case "gm-notifier.update.interval":
  2624.       this.setTimeout(this.getPrefBranch().getIntPref("gm-notifier.update.interval"));
  2625.       break;
  2626.  
  2627.     case "gm-notifier.multiaccount.enabled":
  2628.       if (!this.supportsMultiMode()) {
  2629.         this.multiuser = false;
  2630.       } else {
  2631.         this.multiuser = this.getPrefBranch().getBoolPref("gm-notifier.multiaccount.enabled");
  2632.       }
  2633.  
  2634.       this.buildUserQueue();
  2635.  
  2636.       if (!this.multiuser) {
  2637.         // build a new user list
  2638.  
  2639.         // log out every user other than the default user
  2640.         for (name in this.userList) {
  2641.           if (name != this.defaultUser) {
  2642.             this.logoutUser(name);
  2643.           }
  2644.         }
  2645.       }
  2646.       break;
  2647.  
  2648.     case "gm-notifier.users.default":
  2649.       try {
  2650.         this.defaultUser = this.getPrefBranch().getCharPref("gm-notifier.users.default");
  2651.       } catch (e) {}
  2652.       break;
  2653.   }
  2654. }
  2655.  
  2656. nsNotifierService.prototype.addPrefObserver = function(aDomain, aFunction){
  2657.   var myPrefs = this.getPrefBranch();
  2658.   var prefBranchInternal = myPrefs.QueryInterface(Components.interfaces.nsIPrefBranchInternal);
  2659.  
  2660.   if (prefBranchInternal) {
  2661.     prefBranchInternal.addObserver(aDomain, aFunction, false);
  2662.   }
  2663. }
  2664.  
  2665. /* Bundle code */
  2666. nsNotifierService.prototype.getStringBundle = function() {
  2667.   if (!this.stringBundle) {
  2668.     var strBundleService = Components.classes["@mozilla.org/intl/stringbundle;1"]
  2669.                              .createInstance(Components.interfaces.nsIStringBundleService);
  2670.  
  2671.     this.stringBundle = strBundleService.createBundle("chrome://gm-notifier/locale/gm-notifier.properties");
  2672.   }
  2673.  
  2674.   return this.stringBundle;
  2675. }
  2676.  
  2677. nsNotifierService.prototype.getString = function(aName) {
  2678.   return this.getStringBundle().GetStringFromName(aName);
  2679. }
  2680.  
  2681. nsNotifierService.prototype.getFormattedString = function(aName, aStrArray) {
  2682.   return this.getStringBundle().formatStringFromName(aName, aStrArray, aStrArray.length);
  2683. }
  2684.  
  2685. nsNotifierService.prototype.getLoginDetails = function(aUsername) {
  2686.   var url = "chrome://gm-notifier/";
  2687.  
  2688.   // check for toolkit's login manager (Mozilla 1.9)
  2689.   if (Components.classes[kLOGINMANAGER_CONTRACTID]) {
  2690.     var passwordManager = Components.classes[kLOGINMANAGER_CONTRACTID].getService(nsILoginManager);
  2691.     var logins = passwordManager.findLogins({}, url, null, "gm-notifier");
  2692.  
  2693.     for (var i = 0; i < logins.length; i++) {
  2694.       if (logins[i].username == aUsername) {
  2695.         var password = logins[i].password;
  2696.         if (password === " ") {
  2697.           // XXX: empty password is " " for now due to ff3 change
  2698.           return "";
  2699.         } else {
  2700.           return password;
  2701.         }
  2702.       }
  2703.     }
  2704.   } else {
  2705.     var passwordManager = Components.classes[kPSWDMANAGER_CONTRACTID]
  2706.                           .createInstance(nsIPasswordManagerInternal);
  2707.     var host = {value:""};
  2708.     var user =  {value:""};
  2709.     var password = {value:""};
  2710.  
  2711.     try {
  2712.       passwordManager.findPasswordEntry(url, aUsername, "", host, user, password);
  2713.     } catch(e){ }
  2714.  
  2715.     return password.value;
  2716.   }
  2717. }
  2718.  
  2719. nsNotifierService.prototype.getPassword = function(aUsername) {
  2720.   var password = "";
  2721.  
  2722.   if (this.userList[aUsername]) {
  2723.     password = this.userList[aUsername].password;
  2724.   }
  2725.  
  2726.   if (!password) {
  2727.     password = this.getLoginDetails(aUsername);
  2728.   }
  2729.  
  2730.   return password;
  2731. }
  2732.  
  2733. nsNotifierService.prototype.getURLProtocol = function() {
  2734.   /*var urlprotocol = "";
  2735.   if (this.getPrefBranch().getBoolPref("gm-notifier.connection.use.unsecured")) {
  2736.     urlprotocol = "http://";
  2737.   } else {
  2738.     urlprotocol = "https://";
  2739.   }
  2740.  
  2741.   return urlprotocol;*/
  2742.   return "https://";
  2743. }
  2744.  
  2745. nsNotifierService.prototype.supportsMultiMode = function() {
  2746.   var supports = false;
  2747.  
  2748.   try {
  2749.     var appInfo = Components.classes["@mozilla.org/xre/app-info;1"]
  2750.                             .getService(Components.interfaces.nsIXULAppInfo);
  2751.     if (appInfo.platformVersion >= "1.8.1") {
  2752.       supports = true;
  2753.     }
  2754.   } catch (e) {}
  2755.  
  2756.   return supports;
  2757. }
  2758.  
  2759. nsNotifierService.prototype.newUserListItem = function(aUsername, aPassword) {
  2760.   if (!this.userList[aUsername]) {
  2761.     this.userCount++;
  2762.   }
  2763.  
  2764.   return {
  2765.     name: aUsername,
  2766.     password: aPassword,
  2767.     resetState: false,
  2768.     newMailMode: false,
  2769.     folders: new Array(),
  2770.     unreadEmails: null,
  2771.     tmpUnreadEmails: null,
  2772.     newEmails: 0,
  2773.     space_used_mb: null,
  2774.     space_used_percent: null,
  2775.     total_mb: null,
  2776.     inboxUnread: 0,
  2777.     inboxNew: 0,
  2778.     state: nsINotifierService.USER_STATE_LOGGED_OUT,
  2779.     cookieObject: new Object()
  2780.   }
  2781. }
  2782.  
  2783. nsNotifierService.prototype.hitch = function(aScope, aFunction) {
  2784.   function toArray(aObj) {
  2785.     var arr = [];
  2786.     for (var i = 0; i < aObj.length; i++) {
  2787.       arr.push(aObj[i]);
  2788.     }
  2789.  
  2790.     return arr;
  2791.   }
  2792.  
  2793.   var origArgs = toArray(arguments);
  2794.   origArgs.splice(0, 2);
  2795.  
  2796.   return function() {
  2797.     var newArgs = toArray(arguments);
  2798.     // add origArgs to end
  2799.     for (var i = 0; i < origArgs.length; i++) {
  2800.       newArgs.push(origArgs[i]);
  2801.     }
  2802.  
  2803.     aFunction.apply(aScope, newArgs)
  2804.   }
  2805. }
  2806.  
  2807. /**
  2808.  * JS XPCOM component registration goop:
  2809.  *
  2810.  * We set ourselves up to observe the xpcom-startup category.  This provides
  2811.  * us with a starting point.
  2812.  */
  2813.  
  2814. nsNotifierService.prototype.QueryInterface = function(iid) {
  2815.   if (!iid.equals(nsINotifierService) &&
  2816.       !iid.equals(Components.interfaces.nsIObserver) &&
  2817.       !iid.equals(nsISupports))
  2818.     throw Components.results.NS_ERROR_NO_INTERFACE;
  2819.   return this;
  2820. }
  2821.  
  2822. var nsNotifierServiceModule = new Object();
  2823.  
  2824. nsNotifierServiceModule.registerSelf = function (compMgr, fileSpec, location, type) {
  2825.   compMgr = compMgr.QueryInterface(Components.interfaces.nsIComponentRegistrar);
  2826.   compMgr.registerFactoryLocation(kGMSERVICE_CID,
  2827.                                   "nsIGMNotifierService",
  2828.                                   kGMSERVICE_CONTRACTID,
  2829.                                   fileSpec,
  2830.                                   location,
  2831.                                   type);
  2832. }
  2833.  
  2834. nsNotifierServiceModule.getClassObject = function (compMgr, cid, iid) {
  2835.   if (!cid.equals(kGMSERVICE_CID)) {
  2836.     throw Components.results.NS_ERROR_NO_INTERFACE;
  2837.   }
  2838.  
  2839.   if (!iid.equals(Components.interfaces.nsIFactory)) {
  2840.     throw Components.results.NS_ERROR_NOT_IMPLEMENTED;
  2841.   }
  2842.  
  2843.   return nsNotifierServiceFactory;
  2844. }
  2845.  
  2846. nsNotifierServiceModule.canUnload = function (compMgr) {
  2847.   // cleanup
  2848.   this.listeners = null;
  2849.  
  2850.   if (this.updateTimer) {
  2851.     this.updateTimer.cancel();
  2852.   }
  2853.  
  2854.   this.updateTimer = null;
  2855.  
  2856.   this.observerService = null;
  2857.  
  2858.   return true;
  2859. }
  2860.  
  2861. var nsNotifierServiceFactory = new Object();
  2862.  
  2863. nsNotifierServiceFactory.createInstance = function (outer, iid) {
  2864.   if (outer != null) {
  2865.     throw Components.results.NS_ERROR_NO_AGGREGATION;
  2866.   }
  2867.  
  2868.   if (!iid.equals(nsINotifierService) && !iid.equals(nsISupports)) {
  2869.     throw Components.results.NS_ERROR_NO_INTERFACE;
  2870.   }
  2871.  
  2872.   return new nsNotifierService();
  2873. }
  2874.  
  2875. function NSGetModule(compMgr, fileSpec) {
  2876.   return nsNotifierServiceModule;
  2877. }
  2878.  
  2879.